From ec26c8c1684e2c16810bd6ba809293d7f39097ec Mon Sep 17 00:00:00 2001 From: akallabeth Date: Thu, 5 Sep 2024 08:43:20 +0200 Subject: [PATCH] [clang-tidy] disable bugprone-macro-parentheses this check has too many false positives (when the macro arguments are types for example) so disable this. --- .clang-tidy | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-tidy b/.clang-tidy index c8eef7f34..0d86512e2 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -23,6 +23,7 @@ Checks: > -altera-unroll-loops, -bugprone-easily-swappable-parameters, -bugprone-assignment-in-if-condition, + -bugprone-macro-parentheses, -cert-dcl16-c, -cert-env33-c, -cert-dcl50-cpp,