From 1ca7bed8f12a364b93f18a2af86534c8ff3bcd60 Mon Sep 17 00:00:00 2001 From: NRK Date: Thu, 3 Oct 2024 00:15:26 +0000 Subject: [PATCH] disable misc-include-cleaner --- .clang-tidy | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.clang-tidy b/.clang-tidy index 9efd8c23..f7d3c1d9 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -6,6 +6,8 @@ # -misc-no-recursion # blindly flags every single recursion regardless of whether the usage was # safe or not. +# -misc-include-cleaner +# not compatible with scrot's existing include policy Checks: > performance-*, misc-*, @@ -24,6 +26,7 @@ Checks: > bugprone-branch-clone, -clang-analyzer-security.insecureAPI.*, -misc-no-recursion, + -misc-include-cleaner, # treat all warnings as errors WarningsAsErrors: '*'