From eaf4f0303e66d5292fb9836a10321c6f0c2a1543 Mon Sep 17 00:00:00 2001 From: GeoDaoyu Date: Tue, 31 Mar 2026 10:04:02 +0800 Subject: [PATCH] chore: fix C lint errors (issue #11210) --- .../@stdlib/strided/base/zmap/benchmark/c/benchmark.length.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/strided/base/zmap/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/strided/base/zmap/benchmark/c/benchmark.length.c index 7de57c90dbdf..6e02d1e20c7c 100644 --- a/lib/node_modules/@stdlib/strided/base/zmap/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/strided/base/zmap/benchmark/c/benchmark.length.c @@ -118,6 +118,7 @@ static double benchmark( int iterations, int len ) { } t = tic(); for ( i = 0; i < iterations; i++ ) { + // cppcheck-suppress uninitvar stdlib_strided_zmap( len, x, 1, y, 1, identity ); if ( y[ i%len ] != y[ i%len ] ) { printf( "should not return NaN\n" );