Remove return int types from BLAS/LAPACK functions.

This commit is contained in:
Antonio Sánchez
2024-02-14 19:51:36 +00:00
parent 7e655c9a5d
commit 5361dea833
38 changed files with 888 additions and 1010 deletions

View File

@@ -11,10 +11,7 @@
extern "C" {
#endif
EIGEN_WEAK_LINKING int xerbla_(const char *msg, int *info, int) {
printf("Eigen BLAS ERROR #%i: %s\n", *info, msg);
return 0;
}
EIGEN_WEAK_LINKING void xerbla_(const char *msg, int *info) { printf("Eigen BLAS ERROR #%i: %s\n", *info, msg); }
#ifdef __cplusplus
}