aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util
diff options
context:
space:
mode:
authorGravatar Marton Danoczy <marton78@gmail.com>2011-11-04 16:37:10 +0100
committerGravatar Marton Danoczy <marton78@gmail.com>2011-11-04 16:37:10 +0100
commitf422668d39c51a7281e55404cfed4a262747eb51 (patch)
treed4b3a45d6ba622317ff2ec43afd39cd0007f4a19 /Eigen/src/Core/util
parent1b98b7347248b959a76157a1da16ce70253fb597 (diff)
Patches to support ARM NEON with Clang 3.0 and LLVM-GCC
Diffstat (limited to 'Eigen/src/Core/util')
-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 2b3810bcc..9676ef10e 100644
--- a/Eigen/src/Core/util/Macros.h
+++ b/Eigen/src/Core/util/Macros.h
@@ -45,7 +45,7 @@
#define EIGEN_GNUC_AT_MOST(x,y) 0
#endif
-#if EIGEN_GNUC_AT_MOST(4,3)
+#if EIGEN_GNUC_AT_MOST(4,3) && !defined(__clang__)
// see bug 89
#define EIGEN_SAFE_TO_USE_STANDARD_ASSERT_MACRO 0
#else