From cfed2754e11f048274ed5b7a064505fa93ad3a83 Mon Sep 17 00:00:00 2001 From: zhanggy Date: Thu, 22 May 2025 13:56:01 +0800 Subject: [PATCH] chore: fix C lint errors (issue #6914) --- .../strided/special/smskfloor/benchmark/c/benchmark.length.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/math/strided/special/smskfloor/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/math/strided/special/smskfloor/benchmark/c/benchmark.length.c index 296e63d5f3bc..d41819de930d 100644 --- a/lib/node_modules/@stdlib/math/strided/special/smskfloor/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/math/strided/special/smskfloor/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_smskfloor( len, x, 1, m, 1, y, 1 ); if ( y[ 0 ] != y[ 0 ] ) { printf( "should not return NaN\n" );