From 11263eb44aced45fa6f94e8031fd484bf989dec4 Mon Sep 17 00:00:00 2001 From: Eduardo Almeida Date: Thu, 31 Oct 2024 15:36:20 +0000 Subject: [PATCH] clang-tidy: Remove readability-braces-around-statements check This check is now enforced by clang-format "InsertBraces: true" --- .clang-tidy | 1 - 1 file changed, 1 deletion(-) diff --git a/.clang-tidy b/.clang-tidy index 66224e832..af18f5337 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -34,7 +34,6 @@ Checks: > performance-inefficient-vector-operation, performance-trivially-destructible, performance-unnecessary-copy-initialization, - readability-braces-around-statements, readability-container-size-empty, readability-isolate-declaration, readability-make-member-function-const,