Skip to content

Commit 388fbd3

Browse files
committed
style: remove empty line and reorder declarations
--- 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: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent eb06ec9 commit 388fbd3

File tree

2 files changed

+4
-6
lines changed
  • lib/node_modules/@stdlib/blas/ext/base

2 files changed

+4
-6
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ static const double tbig = 1.9979190722022350E+146;
3131
static const double ssml = 4.4989137945431964E+161;
3232
static const double sbig = 1.1113793747425387E-162;
3333

34-
3534
/**
3635
* Computes the square root of the residual sum of squares of two double-precision floating-point strided arrays.
3736
*

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ static const double SSML = 4.4989137945431964E+161;
3131
static const double TBIG = 1.9979190722022350E+146;
3232
static const double TSML = 1.4916681462400413E-154;
3333

34-
3534
/**
3635
* Computes the residual sum of squares of two double-precision floating-point strided arrays using Blue's algorithm.
3736
*
@@ -61,18 +60,18 @@ double API_SUFFIX(stdlib_strided_drssbl)( const CBLAS_INT N, const double *X, co
6160
* @return output value
6261
*/
6362
double API_SUFFIX(stdlib_strided_drssbl_ndarray)( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, const double *Y, const CBLAS_INT strideY, const CBLAS_INT offsetY ) {
64-
bool notbig;
63+
CBLAS_INT ix;
64+
CBLAS_INT iy;
6565
double sumsq;
6666
double scale;
67+
CBLAS_INT i;
6768
double abig;
6869
double asml;
6970
double amed;
7071
double ymin;
7172
double ymax;
73+
bool notbig;
7274
double az;
73-
CBLAS_INT ix;
74-
CBLAS_INT iy;
75-
CBLAS_INT i;
7675

7776
if ( N <= 0 ) {
7877
return 0.0;

0 commit comments

Comments
 (0)