Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: fix C lint errors (issue #7032)
  • Loading branch information
udaykakade25 committed May 19, 2025
commit d1e2b9b72eb599f5e873bfb8b4f78ef61e18b488
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/dger/src/dger_f.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading