Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ea63aeb

Browse files
authoredJun 5, 2025··
chore: fix C lint errors
PR-URL: #7219 Closes: #7079 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 65403c9 commit ea63aeb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎lib/node_modules/@stdlib/stats/base/dnanmskmin/benchmark/c/benchmark.length.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ static double benchmark( int iterations, int len ) {
113113
v = 0.0;
114114
t = tic();
115115
for ( i = 0; i < iterations; i++ ) {
116+
// cppcheck-suppress uninitvar
116117
v = stdlib_strided_dnanmskmin( len, x, 1, mask, 1 );
117118
if ( v != v ) {
118119
printf( "should not return NaN\n" );

1 commit comments

Comments
 (1)

stdlib-bot commented on Jun 5, 2025

@stdlib-bot
Contributor

Coverage Report

Package Statements Branches Functions Lines
stats/base/dnanmskmin $\color{green}470/470$
$\color{green}+100.00\%$
$\color{green}57/57$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}470/470$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.