aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Eigen2Support/Cwise.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Eigen2Support/Cwise.h')
-rw-r--r--Eigen/src/Eigen2Support/Cwise.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Eigen2Support/Cwise.h b/Eigen/src/Eigen2Support/Cwise.h
index 74fa63aaa..c80f56a69 100644
--- a/Eigen/src/Eigen2Support/Cwise.h
+++ b/Eigen/src/Eigen2Support/Cwise.h
@@ -62,8 +62,8 @@ template<typename ExpressionType> class Cwise
public:
typedef typename internal::traits<ExpressionType>::Scalar Scalar;
- typedef typename internal::meta_if<internal::must_nest_by_value<ExpressionType>::ret,
- ExpressionType, const ExpressionType&>::ret ExpressionTypeNested;
+ typedef typename internal::conditional<internal::must_nest_by_value<ExpressionType>::ret,
+ ExpressionType, const ExpressionType&>::type ExpressionTypeNested;
typedef CwiseUnaryOp<internal::scalar_add_op<Scalar>, ExpressionType> ScalarAddReturnType;
inline Cwise(const ExpressionType& matrix) : m_matrix(matrix) {}