diff options
author | David Robillard <d@drobilla.net> | 2024-07-16 21:51:15 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-07-16 21:51:33 -0400 |
commit | 39dc2b231dae2743bceb6ebb8a3d4792307df12a (patch) | |
tree | 92599e03c4889f613f62f59796258fbb042f17c9 /.clang-tidy | |
parent | 2c2038edf1622a5140afdd23465767c65f8f2e03 (diff) | |
download | lv2-39dc2b231dae2743bceb6ebb8a3d4792307df12a.tar.xz |
Suppress new warnings in clang and clang-tidy 18
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.clang-tidy b/.clang-tidy index ae712c5..5279051 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -3,16 +3,17 @@ Checks: > *, + -*-macro-to-enum, -*-magic-numbers, -altera-*, -bugprone-assignment-in-if-condition, + -bugprone-casting-through-void, -bugprone-easily-swappable-parameters, -bugprone-macro-parentheses, -clang-diagnostic-unused-function, -clang-diagnostic-unused-macros, -llvmlibc-restrict-system-libc-headers, -misc-include-cleaner, - -modernize-macro-to-enum, -performance-no-int-to-ptr, -readability-identifier-length, CheckOptions: |