From 01c64479632cc2ab5fec1fae256aae6589a08a37 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Fri, 13 Sep 2024 12:59:35 +0200 Subject: [PATCH] [clang-tidy] disable clang-analyzer-optin.performance.Padding MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit this is not a bug but a performance suggestion test. We donĀ“t want these mixed in with actual issues --- .clang-tidy | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-tidy b/.clang-tidy index 6fd312001..43fe6793a 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -28,6 +28,7 @@ Checks: > -cert-dcl16-c, -cert-env33-c, -cert-dcl50-cpp, + -clang-analyzer-optin.performance.Padding, -clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling, -clang-analyzer-valist.Uninitialized, -cppcoreguidelines-pro-bounds-array-to-pointer-decay,