Removed unnecessary const qualifiers in template
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "config.hpp"
|
||||
|
||||
#include "../io/io.hpp"
|
||||
|
||||
namespace uart {
|
||||
|
||||
template <const io::P rxPin, const io::P txPin, class config>
|
||||
template <io::P rxPin, io::P txPin, class cfg = config<>>
|
||||
class software {
|
||||
public:
|
||||
using data_t = typename config::data_t;
|
||||
|
||||
Reference in New Issue
Block a user