From 7234c83f1d7b1e4afa4e0a0a30bcc076e3501545 Mon Sep 17 00:00:00 2001 From: GeoDaoyu Date: Sun, 5 Oct 2025 09:14:17 +0800 Subject: [PATCH] chore: fix C lint errors (issue #8201) --- .../math/strided/special/ddeg2rad/benchmark/c/benchmark.length.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/math/strided/special/ddeg2rad/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/math/strided/special/ddeg2rad/benchmark/c/benchmark.length.c index c602bd2544b5..983ff810d9e3 100644 --- a/lib/node_modules/@stdlib/math/strided/special/ddeg2rad/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/math/strided/special/ddeg2rad/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_ddeg2rad( len, x, 1, y, 1 ); if ( y[ 0 ] != y[ 0 ] ) { printf( "should not return NaN\n" );