aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util
diff options
context:
space:
mode:
authorGravatar Deanna Hood <deanna.m.hood@gmail.com>2015-04-20 14:57:04 -0400
committerGravatar Deanna Hood <deanna.m.hood@gmail.com>2015-04-20 14:57:04 -0400
commit249c48ba001f83978f84bf1befdf4867550ff6ea (patch)
treec6f32c7d52907fa33bb4db40dc517081125a1bf0 /Eigen/src/Core/util
parent0250f4a9f2f7bb54ed760cec045939a1bbe58170 (diff)
Incorporate C++11 check into EIGEN_HAS_C99_MATH macro
Diffstat (limited to 'Eigen/src/Core/util')
-rw-r--r--Eigen/src/Core/util/Macros.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/Eigen/src/Core/util/Macros.h b/Eigen/src/Core/util/Macros.h
index 414f688ad..7c7a3b8e7 100644
--- a/Eigen/src/Core/util/Macros.h
+++ b/Eigen/src/Core/util/Macros.h
@@ -403,10 +403,12 @@
#endif
// Does the compiler support C99 math?
-#if (EIGEN_COMP_GNUC_STRICT || \
- (EIGEN_COMP_ICC && EIGEN_COMP_GNUC) || \
- (EIGEN_COMP_CLANG) || \
- (EIGEN_COMP_MSVC >= 1800))
+#if (__cplusplus >= 201103L) && (EIGEN_COMP_GNUC_STRICT || EIGEN_COMP_CLANG || EIGEN_COMP_MSVC || EIGEN_COMP_ICC) \
+ && (EIGEN_ARCH_i386_OR_x86_64) && (EIGEN_OS_GNULINUX || EIGEN_OS_WIN_STRICT || EIGEN_OS_MAC) || \
+ (EIGEN_COMP_GNUC_STRICT || \
+ (EIGEN_COMP_ICC && EIGEN_COMP_GNUC) || \
+ (EIGEN_COMP_CLANG) || \
+ (EIGEN_COMP_MSVC >= 1800))
#define EIGEN_HAS_C99_MATH 1
#endif