From 06b4a070156a9333549468e67923a3a16c8f541b Mon Sep 17 00:00:00 2001 From: Roman Lebedev Date: Mon, 18 Mar 2024 14:01:25 +0300 Subject: [PATCH] clang-tidy broke the world (#1766) `AnalyzeTemporaryDtors` option is no longer recognized by clang-tidy-18, and that renders the whole config invalid and completely ignored... ??? --- .clang-tidy | 1 - 1 file changed, 1 deletion(-) diff --git a/.clang-tidy b/.clang-tidy index 56938a59..1e229e58 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -2,6 +2,5 @@ Checks: 'clang-analyzer-*,readability-redundant-*,performance-*' WarningsAsErrors: 'clang-analyzer-*,readability-redundant-*,performance-*' HeaderFilterRegex: '.*' -AnalyzeTemporaryDtors: false FormatStyle: none User: user