diff --git a/lib/node_modules/@stdlib/blas/base/dger/include/stdlib/blas/base/dger.h b/lib/node_modules/@stdlib/blas/base/dger/include/stdlib/blas/base/dger.h index 616c8c57a9e3..1b774738e5c5 100644 --- a/lib/node_modules/@stdlib/blas/base/dger/include/stdlib/blas/base/dger.h +++ b/lib/node_modules/@stdlib/blas/base/dger/include/stdlib/blas/base/dger.h @@ -34,7 +34,7 @@ extern "C" { /** * Performs the rank 1 operation `A = alpha*x*y^T + A`, where `alpha` is a scalar, `x` is an `M` element vector, `y` is an `N` element vector, and `A` is an `M`-by-`N` matrix. */ -void API_SUFFIX(c_dger)( const CBLAS_LAYOUT layout, const CBLAS_INT M, const CBLAS_INT N, const double alpha, double *X, const CBLAS_INT strideX, double *Y, const CBLAS_INT strideY, double *A, const CBLAS_INT LDA ); +void API_SUFFIX(c_dger)( const CBLAS_LAYOUT layout, const CBLAS_INT M, const CBLAS_INT N, const double alpha, const double *X, const CBLAS_INT strideX, const double *Y, const CBLAS_INT strideY, double *A, const CBLAS_INT LDA ); #ifdef __cplusplus } diff --git a/lib/node_modules/@stdlib/blas/base/dger/src/dger_f.c b/lib/node_modules/@stdlib/blas/base/dger/src/dger_f.c index 9f5a8d88af0e..0be9e8b58350 100644 --- a/lib/node_modules/@stdlib/blas/base/dger/src/dger_f.c +++ b/lib/node_modules/@stdlib/blas/base/dger/src/dger_f.c @@ -35,7 +35,7 @@ * @param A matrix of coefficients * @param LDA stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`) */ -void API_SUFFIX(c_dger)( const CBLAS_LAYOUT layout, const CBLAS_INT M, const CBLAS_INT N, const double alpha, double *X, const CBLAS_INT strideX, double *Y, const CBLAS_INT strideY, double *A, const CBLAS_INT LDA ) { +void API_SUFFIX(c_dger)( const CBLAS_LAYOUT layout, const CBLAS_INT M, const CBLAS_INT N, const double alpha, const double *X, const CBLAS_INT strideX, const double *Y, const CBLAS_INT strideY, double *A, const CBLAS_INT LDA ) { extern int RowMajorStrg; // global flag RowMajorStrg = 0;