aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Eval.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Core/Eval.h')
-rw-r--r--Eigen/src/Core/Eval.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Core/Eval.h b/Eigen/src/Core/Eval.h
index ece372a04..c841a2887 100644
--- a/Eigen/src/Core/Eval.h
+++ b/Eigen/src/Core/Eval.h
@@ -56,7 +56,7 @@ struct ei_traits<Eval<ExpressionType> >
};
};
-template<typename ExpressionType> class Eval : NoOperatorEquals,
+template<typename ExpressionType> class Eval : ei_no_assignment_operator,
public Matrix< typename ExpressionType::Scalar,
ExpressionType::RowsAtCompileTime,
ExpressionType::ColsAtCompileTime,
@@ -81,7 +81,7 @@ template<typename ExpressionType> class Eval : NoOperatorEquals,
ExpressionType::MaxRowsAtCompileTime,
ExpressionType::MaxColsAtCompileTime> MatrixType;
- _EIGEN_BASIC_PUBLIC_INTERFACE(Eval, MatrixType)
+ _EIGEN_GENERIC_PUBLIC_INTERFACE(Eval, MatrixType)
explicit Eval(const ExpressionType& expr) : MatrixType(expr) {}
};