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 /examples/.clang-tidy | |
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 'examples/.clang-tidy')
-rw-r--r-- | examples/.clang-tidy | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/.clang-tidy b/examples/.clang-tidy index f7edc9a..f18400c 100644 --- a/examples/.clang-tidy +++ b/examples/.clang-tidy @@ -13,6 +13,7 @@ Checks: > -bugprone-suspicious-string-compare, -cert-dcl37-c, -cert-dcl51-cpp, + -cert-err33-c, -concurrency-mt-unsafe, -cppcoreguidelines-avoid-non-const-global-variables, -cppcoreguidelines-macro-usage, @@ -24,6 +25,7 @@ Checks: > -fuchsia-default-arguments, -fuchsia-default-arguments-calls, -fuchsia-overloaded-operator, + -google-readability-casting, -google-runtime-references, -hicpp-multiway-paths-covered, -hicpp-no-array-decay, @@ -35,6 +37,7 @@ Checks: > -modernize-use-trailing-return-type, -performance-no-int-to-ptr, -readability-function-cognitive-complexity, + -readability-identifier-length, -readability-implicit-bool-conversion, FormatStyle: file HeaderFilterRegex: 'pugl/.*|test/.*|examples/.*' |