From c86b9c0da02a24ad0d27521fb3f47f05cf670531 Mon Sep 17 00:00:00 2001 From: zhanggy Date: Thu, 1 Jan 2026 14:09:31 +0800 Subject: [PATCH] chore: fix C lint errors (issue #9463) --- .../math/strided/special/dmskcbrt/benchmark/c/benchmark.length.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/math/strided/special/dmskcbrt/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/math/strided/special/dmskcbrt/benchmark/c/benchmark.length.c index fd1f2f067fde..eb5068891bf1 100644 --- a/lib/node_modules/@stdlib/math/strided/special/dmskcbrt/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/math/strided/special/dmskcbrt/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_dmskcbrt( len, x, 1, m, 1, y, 1 ); if ( y[ 0 ] != y[ 0 ] ) { printf( "should not return NaN\n" );