From fbbda2259da164fb6365c6d03fc3bce11ea7adad Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Wed, 18 Sep 2024 13:09:59 +0200 Subject: [PATCH] [clang-tidy] deactivate cppcoreguidelines-pro-type-reinterpret-cast we do noeed these casts for compatibility with C void* usage. Deactivate this check to reduce noise. --- .clang-tidy | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-tidy b/.clang-tidy index 7f9d19468..d861b3354 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -39,6 +39,7 @@ Checks: > -cppcoreguidelines-avoid-non-const-global-variables, -cppcoreguidelines-macro-to-enum, -cppcoreguidelines-pro-type-vararg, + -cppcoreguidelines-pro-type-reinterpret-cast, -cppcoreguidelines-pro-bounds-pointer-arithmetic, -cppcoreguidelines-no-malloc, -google-readability-braces-around-statements,