From 979b73cebfcdd8a4b323e75b4238f21af3036326 Mon Sep 17 00:00:00 2001 From: Benoit Steiner Date: Thu, 16 Jul 2015 14:17:50 -0700 Subject: [PATCH] Fixed a typo in Macro.h --- 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 8cffb3f89..f1f7c3082 100644 --- a/Eigen/src/Core/util/Macros.h +++ b/Eigen/src/Core/util/Macros.h @@ -410,7 +410,7 @@ #endif // Does the compiler support const expressions? -#if (defined(__plusplus) && __cplusplus >= 201402L) || \ +#if (defined(__cplusplus) && __cplusplus >= 201402L) || \ EIGEN_GNUC_AT_LEAST(4,9) #define EIGEN_HAS_CONSTEXPR 1 #endif