From 969d6c012e51a98427cadb42473dfaeb2a1f6df5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 30 Apr 2023 18:53:02 -0400 Subject: Suppress new clang-tidy warnings --- src/.clang-tidy | 2 ++ test/.clang-tidy | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/.clang-tidy b/src/.clang-tidy index c50cd8a..99d2651 100644 --- a/src/.clang-tidy +++ b/src/.clang-tidy @@ -10,6 +10,8 @@ Checks: > -clang-analyzer-unix.Malloc, -hicpp-signed-bitwise, -misc-no-recursion, + -modernize-macro-to-enum, + -performance-no-int-to-ptr, -readability-function-cognitive-complexity, -readability-identifier-length, InheritParentConfig: true diff --git a/test/.clang-tidy b/test/.clang-tidy index d335ce8..4b98cf1 100644 --- a/test/.clang-tidy +++ b/test/.clang-tidy @@ -4,5 +4,7 @@ Checks: > -*-magic-numbers, -cert-err33-c, + -modernize-macro-to-enum, + -performance-no-int-to-ptr, -readability-identifier-length, InheritParentConfig: true -- cgit v1.2.1