Skip to content

Commit 576b85b

Browse files
authored
chore: fix C lint errors
PR-URL: #7033 Closes: #7032 Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent 02109aa commit 576b85b

File tree

2 files changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/blas/base/dger

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/dger/include/stdlib/blas/base/dger.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ extern "C" {
3434
/**
3535
* 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.
3636
*/
37-
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 );
37+
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 );
3838

3939
#ifdef __cplusplus
4040
}

lib/node_modules/@stdlib/blas/base/dger/src/dger_f.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* @param A matrix of coefficients
3636
* @param LDA stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
3737
*/
38-
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 ) {
38+
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 ) {
3939
extern int RowMajorStrg; // global flag
4040

4141
RowMajorStrg = 0;

0 commit comments

Comments
 (0)