From 1bd49f65fa4c4d997915b826b2becf31794ac8b5 Mon Sep 17 00:00:00 2001 From: BlackMark Date: Sun, 5 Apr 2020 03:23:12 +0200 Subject: [PATCH] Fixed template variable capitalization --- uart.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uart.hpp b/uart.hpp index ed708be..dc59840 100644 --- a/uart.hpp +++ b/uart.hpp @@ -19,10 +19,10 @@ namespace uart { namespace detail { -template +template static constexpr size_t cntDigits() { - T num = limit; + T num = Limit; size_t cnt = 0; do {