Skip to content

Commit 27a2c76

Browse files
committed
chore: clean-up
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent a4c1a0d commit 27a2c76

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/gumbel/skewness/benchmark/benchmark.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ bench( pkg, function benchmark( b ) {
4141
len = 100;
4242
mu = new Float64Array( len );
4343
beta = new Float64Array( len );
44-
4544
for ( i = 0; i < len; i++ ) {
4645
mu[ i ] = uniform( -50.0, 50.0 );
4746
beta[ i ] = uniform( EPS, 20.0 );
@@ -50,7 +49,6 @@ bench( pkg, function benchmark( b ) {
5049
b.tic();
5150
for ( i = 0; i < b.iterations; i++ ) {
5251
y = skewness( mu[ i % len ], beta[ i % len ] );
53-
5452
if ( isnan( y ) ) {
5553
b.fail( 'should not return NaN' );
5654
}

lib/node_modules/@stdlib/stats/base/dists/gumbel/skewness/src/addon.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@
1919
#include "stdlib/stats/base/dists/gumbel/skewness.h"
2020
#include "stdlib/math/base/napi/binary.h"
2121

22-
// cppcheck-suppress shadowFunction
2322
STDLIB_MATH_BASE_NAPI_MODULE_DD_D( stdlib_base_dists_gumbel_skewness )

0 commit comments

Comments
 (0)