Skip to content

Commit

Permalink
[.clangtidy] Disabled readability-use-anyofallof warning (#1595)
Browse files Browse the repository at this point in the history
The code that clang tidy suggests is available in C++20 and later only.
  • Loading branch information
FlorianReimold authored and KerstinKeller committed May 15, 2024
1 parent 4c6b685 commit b69e80e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,13 @@ Checks: "-*,
readability-*,
-readability-braces-around-statements,
-readability-else-after-return,
-readability-function-cognitive-complexity,
-readability-identifier-length,
-readability-magic-numbers,
-readability-redundant-access-specifiers,
-readability-function-cognitive-complexity,
-readability-else-after-return,
-readability-uppercase-literal-suffix,
-readability-use-anyofallof,
"
WarningsAsErrors: ''
HeaderFilterRegex: '^((?!/thirdparty/|/_deps/).)*$'
Expand Down

0 comments on commit b69e80e

Please sign in to comment.