aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/mixingtypes.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-05-20 15:01:27 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-05-20 15:01:27 +0200
commitabd1c1af7a568b067ca8cec8b8345a7a6f9d2c28 (patch)
tree7ef2c5a1b5e57ffcb28e5fca38e7d54f1f1f16af /test/mixingtypes.cpp
parent1395056fc0c077b0a1e9b1854c6f18d6bbb9ee61 (diff)
Make EIGEN_HAS_STD_RESULT_OF user configurable
Diffstat (limited to 'test/mixingtypes.cpp')
-rw-r--r--test/mixingtypes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mixingtypes.cpp b/test/mixingtypes.cpp
index 3d0875481..dbcf468ea 100644
--- a/test/mixingtypes.cpp
+++ b/test/mixingtypes.cpp
@@ -57,7 +57,7 @@ template<int SizeAtCompileType> void mixingtypes(int size = SizeAtCompileType)
mf+mf;
VERIFY_RAISES_ASSERT(mf+md);
-#ifndef EIGEN_HAS_STD_RESULT_OF
+#if !EIGEN_HAS_STD_RESULT_OF
// this one does not even compile with C++11
VERIFY_RAISES_ASSERT(mf+mcf);
#endif