aboutsummaryrefslogtreecommitdiff
path: root/log.h
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2024-07-25 23:16:04 +0200
committerJohannes Stoelp <johannes.stoelp@gmail.com>2024-07-25 23:16:04 +0200
commitaf7a61a5464c266426a20e7dacf6c52bb80b28e9 (patch)
tree2257894c751d29ebf6b2eb1a8d1ec9fcf4c70c62 /log.h
parent792409865b159aaf49e3153a5f6c136f199e70a3 (diff)
downloadcpp-utils-af7a61a5464c266426a20e7dacf6c52bb80b28e9.tar.gz
cpp-utils-af7a61a5464c266426a20e7dacf6c52bb80b28e9.zip
lint: fix lints from newer clang-tidy version
Diffstat (limited to 'log.h')
-rw-r--r--log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/log.h b/log.h
index 8e8035b..3664b62 100644
--- a/log.h
+++ b/log.h
@@ -45,7 +45,7 @@ namespace logging {
M(kDbg0, "DBG0")
#define M(val, ignore) val,
-enum log_level { LOG_LEVELS(M) };
+enum log_level : char { LOG_LEVELS(M) };
#undef M
#define M(ignore, val) val,