From d9a05d0273dfc7f73e6c8006c9bc7cc3c96bbc9f Mon Sep 17 00:00:00 2001 From: BlackMark Date: Sun, 28 Jul 2019 14:08:41 +0200 Subject: [PATCH] Fixed refactoring problem --- software.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/software.hpp b/software.hpp index 812eca8..f8b0432 100644 --- a/software.hpp +++ b/software.hpp @@ -9,8 +9,8 @@ namespace uart { template > class software { public: - using data_t = typename config::data_t; - static constexpr auto DATA_BITS = config::DATA_BITS; + using data_t = typename cfg::data_t; + static constexpr auto DATA_BITS = cfg::DATA_BITS; static void init() {} };