Fixed template variable capitalization
This commit is contained in:
parent
cb436b11a8
commit
1bd49f65fa
4
uart.hpp
4
uart.hpp
@ -19,10 +19,10 @@ namespace uart {
|
|||||||
|
|
||||||
namespace detail {
|
namespace detail {
|
||||||
|
|
||||||
template <typename T, T limit, size_t Base>
|
template <typename T, T Limit, size_t Base>
|
||||||
static constexpr size_t cntDigits()
|
static constexpr size_t cntDigits()
|
||||||
{
|
{
|
||||||
T num = limit;
|
T num = Limit;
|
||||||
size_t cnt = 0;
|
size_t cnt = 0;
|
||||||
|
|
||||||
do {
|
do {
|
||||||
|
Loading…
Reference in New Issue
Block a user