aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/SymbolicIndex.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2017-01-16 16:13:37 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2017-01-16 16:13:37 +0100
commit6e97698161275db750868afb99f405cdb849f412 (patch)
tree6856e43ea0150d43b07553fe15498d884b65a4eb /Eigen/src/Core/util/SymbolicIndex.h
parent752bd92ba53de344eba66b8cec4480f9d3207025 (diff)
Introduce a EIGEN_HAS_CXX14 macro
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 03086d6fa..6f603f301 100644
--- a/Eigen/src/Core/util/SymbolicIndex.h
+++ b/Eigen/src/Core/util/SymbolicIndex.h
@@ -76,7 +76,7 @@ public:
template<typename T>
Index eval(const T& values) const { return derived().eval_impl(values); }
-#if __cplusplus > 201103L
+#if EIGEN_HAS_CXX14
template<typename... Types>
Index eval(Types&&... values) const { return derived().eval_impl(std::make_tuple(values...)); }
#endif