summaryrefslogtreecommitdiffstats
path: root/test/ringbuffer_test.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-07-18 10:37:35 +0200
committerDavid Robillard <d@drobilla.net>2020-07-18 10:37:57 +0200
commit242bbeb5649b62a9af4268139afe6f57250520e0 (patch)
tree3d7841d7d999c7dfe428e66bd0e3f4db6d5a51b3 /test/ringbuffer_test.cpp
parenta474f0f93241672f804f88bdf934ab85e79f20c5 (diff)
downloadraul-242bbeb5649b62a9af4268139afe6f57250520e0.tar.gz
raul-242bbeb5649b62a9af4268139afe6f57250520e0.tar.bz2
raul-242bbeb5649b62a9af4268139afe6f57250520e0.zip
Fix various clang-tidy warnings
Diffstat (limited to 'test/ringbuffer_test.cpp')
-rw-r--r--test/ringbuffer_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ringbuffer_test.cpp b/test/ringbuffer_test.cpp
index 37a2740..d7caeaf 100644
--- a/test/ringbuffer_test.cpp
+++ b/test/ringbuffer_test.cpp
@@ -28,7 +28,7 @@
#include <string>
#include <thread>
-#define MSG_SIZE 20u
+constexpr const auto MSG_SIZE = 20u;
namespace {