Removed unnecessary const qualifiers in template

This commit is contained in:
2019-07-28 14:00:46 +02:00
parent 29b4d85ce3
commit 2bbba0fcbd
3 changed files with 7 additions and 5 deletions

View File

@@ -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;