From 528f80b736e7494a7db205e040fcb765bfa98198 Mon Sep 17 00:00:00 2001 From: zhanggy Date: Wed, 2 Jul 2025 09:36:54 +0800 Subject: [PATCH] chore: fix C lint errors (issue #7544) --- .../math/strided/special/dabs/benchmark/c/benchmark.length.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/math/strided/special/dabs/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/math/strided/special/dabs/benchmark/c/benchmark.length.c index 49b97f17f66c..9b7c3131dccf 100644 --- a/lib/node_modules/@stdlib/math/strided/special/dabs/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/math/strided/special/dabs/benchmark/c/benchmark.length.c @@ -107,6 +107,7 @@ static double benchmark( int iterations, int len ) { } t = tic(); for ( i = 0; i < iterations; i++ ) { + // cppcheck-suppress uninitvar stdlib_strided_dabs( len, x, 1, y, 1 ); if ( y[ 0 ] != y[ 0 ] ) { printf( "should not return NaN\n" );