From d024e9942d24e83478c1def5bbdf7f52895c5cc4 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 27 Jan 2017 22:17:59 +0100 Subject: [PATCH] MSVC 1900 release is not c++14 compatible enough for us. The 1910 update seems to be fine though. --- Eigen/src/Core/util/Macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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