From 4335e8b6d914a51804eef1c3b5a6ff2cad0b4e43 Mon Sep 17 00:00:00 2001 From: Dipjyoti Das <126075231+dipexplorer@users.noreply.github.com> Date: Mon, 14 Apr 2025 23:21:22 +0530 Subject: [PATCH] fix C lint errors Signed-off-by: Dipjyoti Das <126075231+dipexplorer@users.noreply.github.com> --- .../math/strided/special/sabs2/benchmark/c/benchmark.length.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/math/strided/special/sabs2/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/math/strided/special/sabs2/benchmark/c/benchmark.length.c index fccc75083dc7..83ee92328da2 100644 --- a/lib/node_modules/@stdlib/math/strided/special/sabs2/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/math/strided/special/sabs2/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_sabs2( len, x, 1, y, 1 ); if ( y[ 0 ] != y[ 0 ] ) { printf( "should not return NaN\n" );