From ab74921b6faa5776be0748d16fd70af974d564a3 Mon Sep 17 00:00:00 2001 From: Henner Zeller Date: Tue, 24 Dec 2024 10:20:28 -0800 Subject: [PATCH] Switch off performance-enum-size clang-tidy check for now. It warns on every enum if it is smaller than fitting into a uint32_t to use a smaller type. While it might be an interesting exercise at some point to look at these, right now, this is a somewhat noisy check. Signed-off-by: Henner Zeller --- .clang-tidy | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-tidy b/.clang-tidy index abda8a0a4aa..3a52baf7bd7 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -31,6 +31,7 @@ Checks: > -google-runtime-references, -google-explicit-constructor, performance-*, + -performance-enum-size, bugprone-*, -bugprone-branch-clone, -bugprone-easily-swappable-parameters,