From 1e34556c29e911f95abae126a6e0e2601706ec20 Mon Sep 17 00:00:00 2001 From: GeoDaoyu Date: Mon, 6 Apr 2026 09:50:23 +0800 Subject: [PATCH] chore: fix C lint errors (issue #11312) --- .../math/strided/special/srsqrt/benchmark/c/benchmark.length.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/math/strided/special/srsqrt/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/math/strided/special/srsqrt/benchmark/c/benchmark.length.c index bf73bfcefc92..2a2ab594e90b 100644 --- a/lib/node_modules/@stdlib/math/strided/special/srsqrt/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/math/strided/special/srsqrt/benchmark/c/benchmark.length.c @@ -125,6 +125,7 @@ static double benchmark( int iterations, int len ) { } t = tic(); for ( i = 0; i < iterations; i++ ) { + // cppcheck-suppress uninitvar stdlib_strided_srsqrt( len, x, 1, y, 1 ); if ( y[ 0 ] != y[ 0 ] ) { printf( "should not return NaN\n" );