From dfe35cd0a89573c48c1043f9079fa7fe54016d66 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. --- .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,