Skip to content

Commit 4049ecf

Browse files
authored
Apply suggestions from code review
Co-authored-by: Athan <kgryte@gmail.com> Signed-off-by: Athan <kgryte@gmail.com>
1 parent cdb8c38 commit 4049ecf

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/blas/ext/base/ddiff/src

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ void API_SUFFIX(stdlib_strided_ddiff)( const CBLAS_INT N, const CBLAS_INT k, con
6969
*/
7070
static void stdlib_strided_base_ddiff_ndarray( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, const CBLAS_INT N1, const double *Prepend, const CBLAS_INT strideP, const CBLAS_INT offsetP, const CBLAS_INT N2, const double *Append, const CBLAS_INT strideA, const CBLAS_INT offsetA, double *Out, const CBLAS_INT strideOut, const CBLAS_INT offsetOut ) {
7171
CBLAS_INT total;
72-
double prev;
73-
double curr;
7472
CBLAS_INT ix;
7573
CBLAS_INT ip;
7674
CBLAS_INT ia;
7775
CBLAS_INT io;
7876
CBLAS_INT i;
77+
double prev;
78+
double curr;
7979

8080
total = N + N1 + N2;
8181
if ( total <= 1 ) {

0 commit comments

Comments
 (0)