From 57204d29a117bd36afc7f6e07a81019d15471e8f Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Fri, 13 Sep 2024 11:20:04 +0200 Subject: Use upper case literal suffixes --- test/buildtool/multithreading/task_system.test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/buildtool/multithreading/task_system.test.cpp') diff --git a/test/buildtool/multithreading/task_system.test.cpp b/test/buildtool/multithreading/task_system.test.cpp index 8e9f5c77..4c7c0b47 100644 --- a/test/buildtool/multithreading/task_system.test.cpp +++ b/test/buildtool/multithreading/task_system.test.cpp @@ -48,7 +48,7 @@ TEST_CASE("Basic", "[task_system]") { } SECTION("1-argument constructor") { std::size_t const desired_number_of_threads_in_ts = - GENERATE(1u, 2u, 5u, 10u, std::thread::hardware_concurrency()); + GENERATE(1U, 2U, 5U, 10U, std::thread::hardware_concurrency()); TaskSystem ts(desired_number_of_threads_in_ts); CHECK(ts.NumberOfThreads() == desired_number_of_threads_in_ts); } -- cgit v1.2.3