Skip to content

Commit

Permalink
Add missing "static inline" to cblas_dsyrk wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
d-torrance committed Sep 27, 2024
1 parent 9994f6a commit b559549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fflas-ffpack/config-blas.h
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ extern "C" {
else
ssyrk_ (EXT_BLAS_UPLO (Uplo), EXT_BLAS_TRANSPOSE(Trans), &N, &K, &alpha, A, &lda, &beta, C, &ldc);
}
void cblas_dsyrk(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo,
static inline void cblas_dsyrk(const enum CBLAS_ORDER Order, const enum CBLAS_UPLO Uplo,
const enum CBLAS_TRANSPOSE Trans, const int N, const int K,
const double alpha, const double *A, const int lda,
const double beta, double *C, const int ldc){
Expand Down

0 comments on commit b559549

Please sign in to comment.