summaryrefslogtreecommitdiffstats
path: root/test/ringbuffer_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/ringbuffer_test.cpp')
-rw-r--r--test/ringbuffer_test.cpp6
1 files changed, 3 insertions, 3 deletions
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 <string>
#include <thread>
-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]);
}
}