Skip to content
Snippets Groups Projects
Commit 92db8869 authored by Tobias Leibner's avatar Tobias Leibner
Browse files

[clang-tidy] silence two warnings

parent 1b0105b4
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,9 @@
# -clang-analyzer-optin.cplusplus.VirtualCall,
# Gives false positives, see https://github.com/llvm/llvm-project/issues/40486 and https://bugs.llvm.org/show_bug.cgi?id=44247
# -clang-analyzer-cplusplus.NewDeleteLeaks,
# These cause a lot of warnings for static inline functions in headerchecks because they are not used in that compilation unit
# -clang-diagnostic-unneeded-internal-declaration
# -clang-diagnostic-unused-function
Checks: 'readability-else-after-return,
readability-const-return-type,
readability-container-data-pointer,
......@@ -106,6 +109,8 @@ Checks: 'readability-else-after-return,
bugprone-infinite-loop,
bugprone-integer-division,
-clang-analyzer-cplusplus.NewDeleteLeaks,
-clang-diagnostic-unneeded-internal-declaration,
-clang-diagnostic-unused-function,
-clang-analyzer-optin.cplusplus.VirtualCall,
'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment