aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/EvalOMP.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Core/EvalOMP.h')
-rw-r--r--Eigen/src/Core/EvalOMP.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Core/EvalOMP.h b/Eigen/src/Core/EvalOMP.h
index 929e4515a..6c1f9a89f 100644
--- a/Eigen/src/Core/EvalOMP.h
+++ b/Eigen/src/Core/EvalOMP.h
@@ -51,7 +51,7 @@ struct ei_traits<EvalOMP<ExpressionType> >
};
};
-template<typename ExpressionType> class EvalOMP : NoOperatorEquals,
+template<typename ExpressionType> class EvalOMP : ei_no_assignment_operator,
public Matrix< typename ExpressionType::Scalar,
ExpressionType::RowsAtCompileTime,
ExpressionType::ColsAtCompileTime,
@@ -72,7 +72,7 @@ template<typename ExpressionType> class EvalOMP : NoOperatorEquals,
ExpressionType::MaxRowsAtCompileTime,
ExpressionType::MaxColsAtCompileTime> MatrixType;
- _EIGEN_BASIC_PUBLIC_INTERFACE(EvalOMP, MatrixType)
+ _EIGEN_GENERIC_PUBLIC_INTERFACE(EvalOMP, MatrixType)
#ifdef _OPENMP
explicit EvalOMP(const ExpressionType& other)