From cc2f57f2fa2ea8f2c5776f7bdd08d14d60d3fd2f Mon Sep 17 00:00:00 2001 From: zhanggy Date: Sat, 5 Jul 2025 09:36:04 +0800 Subject: [PATCH] chore: fix C lint errors (issue #7561) --- .../math/strided/special/dsqrt/benchmark/c/benchmark.length.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/math/strided/special/dsqrt/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/math/strided/special/dsqrt/benchmark/c/benchmark.length.c index a990fc2e3c0f..146b17844942 100644 --- a/lib/node_modules/@stdlib/math/strided/special/dsqrt/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/math/strided/special/dsqrt/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_dsqrt( len, x, 1, y, 1 ); if ( y[ 0 ] != y[ 0 ] ) { printf( "should not return NaN\n" );