From 227c03c9eb5f3f62f0146efa25344c7f6f2ff650 Mon Sep 17 00:00:00 2001 From: Robert Haschke Date: Sat, 8 Jun 2024 14:00:39 +0200 Subject: [PATCH] Fix clang-tidy config - AnalyzeTemporaryDtors was removed - disable performance-enum-size --- .clang-tidy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-tidy b/.clang-tidy index 83fc26e052..6e9e400699 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,6 +1,7 @@ --- Checks: '-*, performance-*, + -performance-enum-size, llvm-namespace-comment, modernize-redundant-void-arg, modernize-use-nullptr, @@ -21,7 +22,6 @@ Checks: '-*, readability-static-definition-in-anonymous-namespace, ' HeaderFilterRegex: '' -AnalyzeTemporaryDtors: false CheckOptions: - key: llvm-namespace-comment.ShortNamespaceLines value: '10'