aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-09-07 10:26:54 +0200
committerEugen Wissner <belka@caraus.de>2026-09-07 10:26:54 +0200
commitcbf81462fdd3038b7b674b1143d452bdfe0697c4 (patch)
tree42a1dd2c6cb9731d2e3f4fd5e57a88b412d8b4e2
parent93d251251ff926718b81fd62fba88dfa66d469e9 (diff)
downloadelna-cbf81462fdd3038b7b674b1143d452bdfe0697c4.tar.gz
Exclude static assert check because of clang-tidy bug
-rw-r--r--.clang-tidy4
1 files changed, 4 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 2e01fb3..c5d99db 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -27,3 +27,7 @@ Checks: |
-modernize-return-braced-init-list,
# False positives: does not see delete inside loop bodies of destructors.
-modernize-use-equals-default,
+
+ # llvm/llvm-project#213560: fires on every assert() with glibc's variadic macro.
+ -misc-static-assert,
+ -cert-dcl03-c,