We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea11328 commit 3d10cb9Copy full SHA for 3d10cb9
lib/node_modules/@stdlib/stats/base/dists/exponential/pdf/benchmark/c/benchmark.c
@@ -107,7 +107,7 @@ static double benchmark( void ) {
107
108
t = tic();
109
for ( i = 0; i < ITERATIONS; i++ ) {
110
- y = stdlib_base_dists_exponential_pdf( x[ i % 100 ], lambda[ i % 100 ]);
+ y = stdlib_base_dists_exponential_pdf( x[ i % 100 ], lambda[ i % 100 ] );
111
if ( y != y ) {
112
printf( "should not return NaN\n" );
113
break;
lib/node_modules/@stdlib/stats/base/dists/exponential/pdf/src/addon.c
@@ -19,5 +19,4 @@
19
#include "stdlib/stats/base/dists/exponential/pdf.h"
20
#include "stdlib/math/base/napi/binary.h"
21
22
-// cppcheck-suppress shadowFunction
23
STDLIB_MATH_BASE_NAPI_MODULE_DD_D( stdlib_base_dists_exponential_pdf )
0 commit comments