diff options
author | David Robillard <d@drobilla.net> | 2022-05-26 13:27:22 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-05-26 13:27:22 -0400 |
commit | 52650784331844f8a92c5e9c4ba443a468743867 (patch) | |
tree | d3e5477eeb641344466d2994b1d052defff69f36 /.clang-tidy | |
parent | ec24b754f1fa81f05b011a444a1dd8d67d066d31 (diff) | |
download | lv2-52650784331844f8a92c5e9c4ba443a468743867.tar.xz |
Suppress new warnings in clang-tidy 13
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy index 66a8005..7cb42c6 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -3,6 +3,7 @@ Checks: > -*-else-after-return, -*-magic-numbers, -*-uppercase-literal-suffix, + -altera-*, -bugprone-macro-parentheses, -bugprone-suspicious-include, -bugprone-suspicious-string-compare, @@ -16,6 +17,8 @@ Checks: > -misc-unused-parameters, -modernize-redundant-void-arg, -modernize-use-trailing-return-type, + -performance-no-int-to-ptr, + -readability-function-cognitive-complexity, WarningsAsErrors: '*' HeaderFilterRegex: '.*' FormatStyle: file |