Skip to content

Commit a07d044

Browse files
authored
chore: sort vars acc to length
1 parent 8fd5114 commit a07d044

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dmin/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dmin/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ double API_SUFFIX(stdlib_strided_dmin)( const CBLAS_INT N, const double *X, cons
4545
* @return output value
4646
*/
4747
double API_SUFFIX(stdlib_strided_dmin_ndarray)( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX ) {
48-
double min;
4948
CBLAS_INT ix;
5049
CBLAS_INT i;
50+
double min;
5151
double v;
5252

5353
if ( N <= 0 ) {

0 commit comments

Comments
 (0)