From af7a61a5464c266426a20e7dacf6c52bb80b28e9 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Thu, 25 Jul 2024 23:16:04 +0200 Subject: lint: fix lints from newer clang-tidy version --- log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'log.h') 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, -- cgit v1.2.3