Fix long to int conversion in BLAS API.

This commit is contained in:
Gael Guennebaud
2016-04-11 15:52:01 +02:00
parent 8191f373be
commit ddabc992fa
9 changed files with 123 additions and 120 deletions

View File

@@ -114,7 +114,9 @@ typedef std::complex<double> dcomplex;
typedef std::complex<float> scomplex;
#if defined(EIGEN_USE_BLAS) && !defined(EIGEN_USE_MKL)
typedef int MKL_INT;
typedef int BlasIndex;
#else
typedef MKL_INT BlasIndex;
#endif
namespace internal {