From ab11c7f251d3b0d636c1c93e52c33af0baa8ffa3 Mon Sep 17 00:00:00 2001 From: Fabian Ruffy <5960321+fruffy@users.noreply.github.com> Date: Fri, 24 Nov 2023 16:06:08 +0100 Subject: [PATCH] Fix clang-tidy config file. (#4253) --- .clang-tidy | 3 --- 1 file changed, 3 deletions(-) diff --git a/.clang-tidy b/.clang-tidy index 616c46d12e..2c31c4e8f3 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -21,7 +21,6 @@ google-*, FormatStyle: file WarningsAsErrors: '' HeaderFilterRegex: '' -AnalyzeTemporaryDtors: false UseColor: true CheckOptions: - { key: misc-const-correctness.AnalyzeValues, value: false } @@ -33,6 +32,4 @@ CheckOptions: - { key: readability-identifier-naming.GlobalConstantCase, value: UPPER_CASE } - { key: readability-identifier-naming.StaticConstantCase, value: UPPER_CASE } - { key: readability-identifier-naming.StaticVariableCase, value: UPPER_CASE } -ExtraArgs: - - '--std=c++17' ...