From c1d50240317c9053ec2adfd5991695ca438553b4 Mon Sep 17 00:00:00 2001 From: gitlost Date: Wed, 31 Dec 2025 15:35:28 +0000 Subject: [PATCH] CLI: test: suppress clang-tidy warning --- frontend/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/main.c b/frontend/main.c index 051d7ce6..026f3fa5 100644 --- a/frontend/main.c +++ b/frontend/main.c @@ -2430,6 +2430,7 @@ static int test_cpy_str(void) { static int test_ncpy_str(void) { /* s/\/\*[ 0-9]*\*\//\=printf("\/\*%3d*\/", line(".") - line("'<")): */ + /* NOLINTNEXTLINE(clang-analyzer-optin.performance.Padding) disable "Excessive padding" warning */ static const struct { int buf_size; const char *str; int str_max; const char *buf; } data[] = { /* 0*/ { 10, "", 0, "" }, /* 1*/ { 10, "123", 0, "" },