MSVC 1900 release is not c++14 compatible enough for us. The 1910 update seems to be fine though.

This commit is contained in:
Gael Guennebaud 2017-01-27 22:17:59 +01:00
parent 83592659ba
commit d024e9942d

View File

@ -362,7 +362,7 @@
#define EIGEN_HAS_CXX11 0
#endif
#if EIGEN_MAX_CPP_VER>=14 && (defined(__cplusplus) && (__cplusplus > 201103L) || EIGEN_COMP_MSVC >= 1900)
#if EIGEN_MAX_CPP_VER>=14 && (defined(__cplusplus) && (__cplusplus > 201103L) || EIGEN_COMP_MSVC >= 1910)
#define EIGEN_HAS_CXX14 1
#else
#define EIGEN_HAS_CXX14 0