From 0252df418bdf1f13e64497148aa5693c27a559da Mon Sep 17 00:00:00 2001 From: GeoDaoyu Date: Fri, 17 Oct 2025 10:41:50 +0800 Subject: [PATCH] chore: fix C lint errors (issue #8249) --- .../@stdlib/strided/base/smskmap/benchmark/c/benchmark.length.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/strided/base/smskmap/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/strided/base/smskmap/benchmark/c/benchmark.length.c index ba09cc8ecae0..a005a0f13ef8 100644 --- a/lib/node_modules/@stdlib/strided/base/smskmap/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/strided/base/smskmap/benchmark/c/benchmark.length.c @@ -120,6 +120,7 @@ static double benchmark( int iterations, int len ) { } t = tic(); for ( i = 0; i < iterations; i++ ) { + // cppcheck-suppress uninitvar stdlib_strided_smskmap( len, x, 1, m, 1, y, 1, identity ); if ( y[ i%len ] != y[ i%len ] ) { printf( "should not return NaN\n" );