From b66f4579222b0466b419961ec59fe0ff4629809d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 29 Jun 2022 09:04:36 -0400 Subject: Use uppercase integer literal suffixes --- test/ringbuffer_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/ringbuffer_test.cpp') diff --git a/test/ringbuffer_test.cpp b/test/ringbuffer_test.cpp index 1f94b02..0a2dd41 100644 --- a/test/ringbuffer_test.cpp +++ b/test/ringbuffer_test.cpp @@ -27,7 +27,7 @@ #include #include -constexpr const auto MSG_SIZE = 20u; +constexpr const auto MSG_SIZE = 20U; namespace { @@ -41,7 +41,7 @@ struct Context { int gen_msg(int* msg, int start) { - for (unsigned i = 0u; i < MSG_SIZE; ++i) { + for (unsigned i = 0U; i < MSG_SIZE; ++i) { msg[i] = start; start = (start + 1) % INT_MAX; } @@ -51,7 +51,7 @@ gen_msg(int* msg, int start) void check_msg(const int* msg1, const int* msg2) { - for (unsigned i = 0u; i < MSG_SIZE; ++i) { + for (unsigned i = 0U; i < MSG_SIZE; ++i) { assert(msg1[i] == msg2[i]); } } -- cgit v1.2.1