diff options
author | David Robillard <d@drobilla.net> | 2022-10-07 15:12:45 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-10-07 15:12:45 -0400 |
commit | b60d2da07e4d7e348dfa8d414256a996f443d6a4 (patch) | |
tree | f1c3d6cebefe29f89d22b55efa5415fe0114e55f /test | |
parent | 0043a532727a3b015ff156ff904399bd7d78dcec (diff) | |
download | pugl-b60d2da07e4d7e348dfa8d414256a996f443d6a4.tar.gz pugl-b60d2da07e4d7e348dfa8d414256a996f443d6a4.tar.bz2 pugl-b60d2da07e4d7e348dfa8d414256a996f443d6a4.zip |
Suppress new warnings in clang-tidy 14
Diffstat (limited to 'test')
-rw-r--r-- | test/.clang-tidy | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/.clang-tidy b/test/.clang-tidy index 670b63d..6be68df 100644 --- a/test/.clang-tidy +++ b/test/.clang-tidy @@ -4,6 +4,7 @@ Checks: > -*-uppercase-literal-suffix, -altera*, -bugprone-suspicious-include, + -cert-err33-c, -google-runtime-references, -hicpp-multiway-paths-covered, -hicpp-signed-bitwise, @@ -11,5 +12,6 @@ Checks: > -llvmlibc-*, -modernize-use-trailing-return-type, -readability-function-cognitive-complexity, + -readability-identifier-length, FormatStyle: file HeaderFilterRegex: 'pugl/.*|test/.*' |