From 5d4035515b9dd3cf90783ca902612c645950a813 Mon Sep 17 00:00:00 2001 From: GeoDaoyu Date: Sun, 17 Aug 2025 10:13:40 +0800 Subject: [PATCH] chore: fix C lint errors (issue #7899) --- .../strided/special/smsktrunc/benchmark/c/benchmark.length.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/math/strided/special/smsktrunc/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/math/strided/special/smsktrunc/benchmark/c/benchmark.length.c index d637a7d19c72..62a6d4e10f34 100644 --- a/lib/node_modules/@stdlib/math/strided/special/smsktrunc/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/math/strided/special/smsktrunc/benchmark/c/benchmark.length.c @@ -128,6 +128,7 @@ static double benchmark( int iterations, int len ) { } t = tic(); for ( i = 0; i < iterations; i++ ) { + // cppcheck-suppress uninitvar stdlib_strided_smsktrunc( len, x, 1, m, 1, y, 1 ); if ( y[ 0 ] != y[ 0 ] ) { printf( "should not return NaN\n" );