From 395cd74dcdb12ca8f16e1ec74802e11049e4f6cf Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 17 Jul 2024 09:14:30 -0400 Subject: Use uppercase integer literal suffixes --- src/Configuration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Configuration.cpp') diff --git a/src/Configuration.cpp b/src/Configuration.cpp index 814660d..86d60f8 100644 --- a/src/Configuration.cpp +++ b/src/Configuration.cpp @@ -236,7 +236,7 @@ Configuration::load() file >> std::get(_settings).value; } else if (key == "port_color") { std::string type_name; - uint32_t rgba = 0u; + uint32_t rgba = 0U; file >> type_name; file.ignore(1, '#'); file >> std::hex >> std::uppercase; -- cgit v1.2.1