Skip to content

Commit 5d83a20

Browse files
committed
style: remove double empty lines in C files
--- 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: na - 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: passed - 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 e82e559 commit 5d83a20

File tree

10 files changed

+0
-10
lines changed

10 files changed

+0
-10
lines changed

lib/node_modules/@stdlib/blas/ext/base/dnannsum/benchmark/c/benchmark.length.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,6 @@ static double benchmark2( int iterations, int len ) {
168168
return elapsed;
169169
}
170170

171-
172171
/**
173172
* Main execution sequence.
174173
*/

lib/node_modules/@stdlib/blas/ext/base/scusumpw/src/addon.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
#include "stdlib/napi/argv_strided_float32array.h"
2626
#include <node_api.h>
2727

28-
2928
/**
3029
* Receives JavaScript callback invocation data.
3130
*

lib/node_modules/@stdlib/blas/ext/base/sdsapxsum/src/main.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ float API_SUFFIX(stdlib_strided_sdsapxsum)( const CBLAS_INT N, const float alpha
3535
return API_SUFFIX(stdlib_strided_sdsapxsum_ndarray)( N, alpha, X, strideX, ox );
3636
}
3737

38-
3938
/**
4039
* Adds a constant to each single-precision floating-point strided array element and computes the sum using extended accumulation and alternative indexing semantics.
4140
*

lib/node_modules/@stdlib/blas/ext/base/ssort2ins/src/main.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ void API_SUFFIX(stdlib_strided_ssort2ins)( const CBLAS_INT N, const float order,
3939
API_SUFFIX(stdlib_strided_ssort2ins_ndarray)( N, order, X, strideX, ox, Y, strideY, oy );
4040
}
4141

42-
4342
/**
4443
* Simultaneously sorts two single-precision floating-point strided arrays based on the sort order of the first array using insertion sort and alternative indexing semantics.
4544
*

lib/node_modules/@stdlib/blas/ext/base/ssorthp/src/addon.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
#include "stdlib/napi/argv_strided_float32array.h"
2525
#include <node_api.h>
2626

27-
2827
/**
2928
* Receives JavaScript callback invocation data.
3029
*

lib/node_modules/@stdlib/math/base/special/rad2deg/benchmark/c/native/benchmark.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ static double rand_double( void ) {
8484
return (double)r / ( (double)RAND_MAX + 1.0 );
8585
}
8686

87-
8887
/**
8988
* Runs a benchmark.
9089
*

lib/node_modules/@stdlib/math/base/special/rempio2f/src/main.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,6 @@ int32_t rempio2fKernel( const double* x, double *y, int32_t e0, int32_t nx ) {
381381
return n & 7;
382382
}
383383

384-
385384
/**
386385
* Computes `x - nπ/2 = r` (single-precision).
387386
*

lib/node_modules/@stdlib/stats/base/dists/f/mean/src/main.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
#include "stdlib/stats/base/dists/f/mean.h"
2020
#include "stdlib/math/base/assert/is_nan.h"
2121

22-
2322
/**
2423
* Returns the expected value of an F distribution.
2524
*

lib/node_modules/@stdlib/stats/base/dists/weibull/mgf/src/main.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#include "stdlib/math/base/special/gamma.h"
2222
#include "stdlib/constants/float64/eps.h"
2323

24-
2524
/**
2625
* Evaluates the moment-generating function (MGF) for a Weibull distribution with shape `k` and scale `lambda` at a value `t`.
2726
*

lib/node_modules/@stdlib/stats/strided/svarianceyc/src/main.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ float API_SUFFIX(stdlib_strided_svarianceyc)( const CBLAS_INT N, const float cor
4242
return API_SUFFIX(stdlib_strided_svarianceyc_ndarray)( N, correction, X, strideX, ox );
4343
}
4444

45-
4645
/**
4746
* Computes the variance of a single-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer and alternative indexing semantics.
4847
*

0 commit comments

Comments
 (0)