summaryrefslogtreecommitdiffhomepage
path: root/eigen/blas/xerbla.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2019-03-03 21:09:10 +0100
committerStanislaw Halik <sthalik@misaki.pl>2019-03-03 21:10:13 +0100
commitf0238cfb6997c4acfc2bd200de7295f3fa36968f (patch)
treeb215183760e4f615b9c1dabc1f116383b72a1b55 /eigen/blas/xerbla.cpp
parent543edd372a5193d04b3de9f23c176ab439e51b31 (diff)
don't index Eigen
Diffstat (limited to 'eigen/blas/xerbla.cpp')
-rw-r--r--eigen/blas/xerbla.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/eigen/blas/xerbla.cpp b/eigen/blas/xerbla.cpp
deleted file mode 100644
index c373e86..0000000
--- a/eigen/blas/xerbla.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-
-#include <stdio.h>
-
-#if (defined __GNUC__) && (!defined __MINGW32__) && (!defined __CYGWIN__)
-#define EIGEN_WEAK_LINKING __attribute__ ((weak))
-#else
-#define EIGEN_WEAK_LINKING
-#endif
-
-#ifdef __cplusplus
-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;
-}
-
-#ifdef __cplusplus
-}
-#endif