aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/Macros.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2017-01-27 22:17:59 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2017-01-27 22:17:59 +0100
commitd024e9942d24e83478c1def5bbdf7f52895c5cc4 (patch)
treef020f8a6fca030a1e4ddfd2e7732864dbb488069 /Eigen/src/Core/util/Macros.h
parent83592659ba380d1e79fa6f460009d05f12e01b6e (diff)
MSVC 1900 release is not c++14 compatible enough for us. The 1910 update seems to be fine though.
Diffstat (limited to 'Eigen/src/Core/util/Macros.h')
-rw-r--r--Eigen/src/Core/util/Macros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/util/Macros.h b/Eigen/src/Core/util/Macros.h
index 8045a2879..ab0550895 100644
--- a/Eigen/src/Core/util/Macros.h
+++ b/Eigen/src/Core/util/Macros.h
@@ -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