From 4ba4f96f619f51d5d394de430462c3bd356c224e Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Sun, 25 Feb 2024 23:13:10 +0100 Subject: [PATCH] clang-tidy: exclude validate_global_widx() from macro check --- .clang-tidy | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.clang-tidy b/.clang-tidy index 20cc308454..f9c1c33605 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -4,5 +4,8 @@ Checks: > cppcoreguidelines-macro-usage, modernize-use-nullptr, modernize-use-override +CheckOptions: + - key: cppcoreguidelines-macro-usage.AllowedRegexp + value: 'validate_global_widx' WarningsAsErrors: true FormatStyle: 'file'