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 committed May 16, 2024
1 parent 2f6c78a commit 2047642
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 @@ -54,12 +54,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 2047642

Please sign in to comment.