From 1c10a3acbfd6bbdaf26b50d4f381c526ca359f5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Wed, 13 Dec 2023 16:30:40 +0100 Subject: [PATCH] Enable performance-* checks in clang-tidy --- .clang-tidy | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.clang-tidy b/.clang-tidy index ea98d728..e10b7cce 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,9 +1,8 @@ # TODO: add the following check families: -# - performance-* # - bugprone-* # - cppcoreguidelines- # NB: as of clang-tidy 16, we get several false positives inside boost, notably this one: # https://github.com/llvm/llvm-project/issues/40486 -Checks: 'modernize-*,-modernize-use-trailing-return-type,-clang-diagnostic-unqualified-std-cast-call' +Checks: 'performance-*,modernize-*,-modernize-use-trailing-return-type,-clang-diagnostic-unqualified-std-cast-call'