diff options
author | David Robillard <d@drobilla.net> | 2025-02-10 16:07:50 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-02-10 16:07:50 -0500 |
commit | a6f60beda9e8e6b930423c9adb6652a1cb018443 (patch) | |
tree | e9c04b1d377311c85459fbcd6ebebebc5e455476 | |
parent | 415a68cbe8e68f909245b33f63af13e399a849f5 (diff) | |
download | ingen-a6f60beda9e8e6b930423c9adb6652a1cb018443.tar.gz ingen-a6f60beda9e8e6b930423c9adb6652a1cb018443.tar.bz2 ingen-a6f60beda9e8e6b930423c9adb6652a1cb018443.zip |
Suppress new warnings in clang-tidy
-rw-r--r-- | .clang-tidy | 3 | ||||
-rw-r--r-- | src/.clang-tidy | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy index 6e3cd008..d4cd324f 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -7,7 +7,10 @@ Checks: > -abseil-*, -altera-*, -bugprone-assignment-in-if-condition, + -bugprone-reserved-identifier, -bugprone-switch-missing-default-case, + -cert-dcl37-c, + -cert-dcl51-cpp, -cppcoreguidelines-avoid-const-or-ref-data-members, -cppcoreguidelines-avoid-do-while, -cppcoreguidelines-macro-usage, diff --git a/src/.clang-tidy b/src/.clang-tidy index 659fd994..83a09b52 100644 --- a/src/.clang-tidy +++ b/src/.clang-tidy @@ -28,4 +28,5 @@ Checks: > -misc-no-recursion, -misc-unused-parameters, -readability-function-cognitive-complexity, + -readability-static-accessed-through-instance, InheritParentConfig: true |