mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Remove return int types from BLAS/LAPACK functions.
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user