aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/SymbolicIndex.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2017-01-24 16:27:51 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2017-01-24 16:27:51 +0100
commitbc1020185407a324be81f613d88ce4b162f6774d (patch)
treec091d8668fb14a357eae6f9f5ca74d4aa91a0a06 /Eigen/src/Core/util/SymbolicIndex.h
parentc43d254d1376c24c76df45bb274dda74ddfa2e19 (diff)
Add test for multiple symbols
Diffstat (limited to 'Eigen/src/Core/util/SymbolicIndex.h')
-rw-r--r--Eigen/src/Core/util/SymbolicIndex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/util/SymbolicIndex.h b/Eigen/src/Core/util/SymbolicIndex.h
index f9a2e6311..bb6349eb9 100644
--- a/Eigen/src/Core/util/SymbolicIndex.h
+++ b/Eigen/src/Core/util/SymbolicIndex.h
@@ -235,7 +235,7 @@ public:
Index eval_impl(const SymbolValue<Tag> &values) const { return values.value(); }
-#if __cplusplus > 201103L
+#if EIGEN_HAS_CXX14
// C++14 versions suitable for multiple symbols
template<typename... Types>
Index eval_impl(const std::tuple<Types...>& values) const { return std::get<SymbolValue<Tag> >(values).value(); }