From 80239abde83327a4eff9856eb0bce59e226e0da0 Mon Sep 17 00:00:00 2001 From: Florian Reimold <11774314+FlorianReimold@users.noreply.github.com> Date: Wed, 15 May 2024 13:43:48 +0200 Subject: [PATCH] [.clangtidy] Disabled readability-use-anyofallof warning The code that clang tidy suggests is available in C++20 and later only. --- .clang-tidy | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.clang-tidy b/.clang-tidy index 06dedeeb97..9caab13c3b 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -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/).)*$'