From 01cb8c408564b786169dd609f274ea690443698c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20H=C3=B6ppner?= Date: Fri, 5 Dec 2025 15:48:55 +0100 Subject: [PATCH] clang-tidy: Do not warn about multiple declarations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Omit the readability-isolate-declaration [1] check that warns about multiple declarations in one line as the s390-tools coding style prefers this approach. [1] https://clang.llvm.org/extra/clang-tidy/checks/readability/isolate-declaration.html Signed-off-by: Jan Höppner Signed-off-by: Steffen Eiden --- .clang-tidy | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-tidy b/.clang-tidy index cf6af3de..464104b4 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -9,6 +9,7 @@ Checks: > -misc-include-cleaner, -readability-braces-around-statements, -readability-identifier-length, + -readability-isolate-declaration, -modernize-*, -performance-*, -portability-*,