diff options
author | David Robillard <d@drobilla.net> | 2022-06-29 09:04:36 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-07-20 16:24:23 -0400 |
commit | b66f4579222b0466b419961ec59fe0ff4629809d (patch) | |
tree | 925fd4b68233cb51ce787c36703f4b142dfc4a49 | |
parent | 127ded1247765f9ee0db061bf81cf1d2f0088917 (diff) | |
download | raul-b66f4579222b0466b419961ec59fe0ff4629809d.tar.gz raul-b66f4579222b0466b419961ec59fe0ff4629809d.tar.bz2 raul-b66f4579222b0466b419961ec59fe0ff4629809d.zip |
Use uppercase integer literal suffixes
-rw-r--r-- | test/.clang-tidy | 1 | ||||
-rw-r--r-- | test/build_test.cpp | 4 | ||||
-rw-r--r-- | test/ringbuffer_test.cpp | 6 |
3 files changed, 5 insertions, 6 deletions
diff --git a/test/.clang-tidy b/test/.clang-tidy index de052d2..85feab3 100644 --- a/test/.clang-tidy +++ b/test/.clang-tidy @@ -2,7 +2,6 @@ Checks: > *, -*-avoid-c-arrays, -*-magic-numbers, - -*-uppercase-literal-suffix, -*-vararg, -abseil-string-find-str-contains, -altera-*, diff --git a/test/build_test.cpp b/test/build_test.cpp index 52559bf..c228651 100644 --- a/test/build_test.cpp +++ b/test/build_test.cpp @@ -44,8 +44,8 @@ main() raul::Maid maid; NonCopyableThing non_copyable; raul::Path path; - raul::RingBuffer ring_buffer(64u); - raul::Semaphore semaphore(0u); + raul::RingBuffer ring_buffer(64U); + raul::Semaphore semaphore(0U); raul::Symbol symbol("foo"); try { 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]); } } |