summaryrefslogtreecommitdiff
path: root/test/buildtool/multithreading/task_system.test.cpp
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2024-09-13 11:20:04 +0200
committerKlaus Aehlig <klaus.aehlig@huawei.com>2024-09-13 15:14:30 +0200
commit57204d29a117bd36afc7f6e07a81019d15471e8f (patch)
tree40f1d4d7a2a6a39cbb2dd68d48191d3e61098f78 /test/buildtool/multithreading/task_system.test.cpp
parent503c0b5697bdc81cff5648bcd366aabc5596cad2 (diff)
downloadjustbuild-57204d29a117bd36afc7f6e07a81019d15471e8f.tar.gz
Use upper case literal suffixes
Diffstat (limited to 'test/buildtool/multithreading/task_system.test.cpp')
-rw-r--r--test/buildtool/multithreading/task_system.test.cpp2
1 files changed, 1 insertions, 1 deletions
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);
}