From 0f00e37884d40887818a2b744a8b477350b88d79 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Wed, 11 Sep 2024 22:52:24 +0200 Subject: [PATCH] [clang-tidy] disable hicpp-no-assembler we need assembler code for some critical spots, so this check is useless for our use case. --- .clang-tidy | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-tidy b/.clang-tidy index e70f18fda..6e84fe34d 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -42,6 +42,7 @@ Checks: > -google-readability-todo, -hicpp-braces-around-statements, -hicpp-no-array-decay, + -hicpp-no-assembler, -hicpp-multiway-paths-covered, -hicpp-signed-bitwise, -hicpp-uppercase-literal-suffix,