From 16d6c3b79563359c5558151dda960d2151b78df9 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Tue, 3 Sep 2024 17:40:20 +0200 Subject: [PATCH] [clang-tidy] disable modernize-return-braced-init-list this check does not work well with older C++ standards --- .clang-tidy | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-tidy b/.clang-tidy index f8a7209b6..e017b0ee7 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -48,6 +48,7 @@ Checks: > -llvm-else-after-return, -readability-else-after-return, -modernize-use-trailing-return-type, + -modernize-return-braced-init-list, -modernize-macro-to-enum, -readability-braces-around-statements, -readability-function-cognitive-complexity,