aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/NoAlias.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-02-09 10:02:26 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-02-09 10:02:26 +0100
commit0398e21198caaf7206851a9081033cddb0797d47 (patch)
tree2a79b2bdc3b535d897181ff9b20f327f9b49d121 /Eigen/src/Core/NoAlias.h
parentc076fec7340c35120f807d7a5fd7111064a30737 (diff)
s/UnrolledProduct/CoeffBasedProduct
Diffstat (limited to 'Eigen/src/Core/NoAlias.h')
-rw-r--r--Eigen/src/Core/NoAlias.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Core/NoAlias.h b/Eigen/src/Core/NoAlias.h
index e09fd0091..7e2e501b3 100644
--- a/Eigen/src/Core/NoAlias.h
+++ b/Eigen/src/Core/NoAlias.h
@@ -71,11 +71,11 @@ class NoAlias
{ other.derived().subTo(m_expression); return m_expression; }
template<typename Lhs, typename Rhs>
- EIGEN_STRONG_INLINE ExpressionType& operator+=(const GeneralProduct<Lhs,Rhs,UnrolledProduct>& other)
+ EIGEN_STRONG_INLINE ExpressionType& operator+=(const GeneralProduct<Lhs,Rhs,CoeffBasedProduct>& other)
{ return m_expression.derived() += other.template flagged<0,EvalBeforeAssigningBit|EvalBeforeNestingBit>(); }
template<typename Lhs, typename Rhs>
- EIGEN_STRONG_INLINE ExpressionType& operator-=(const GeneralProduct<Lhs,Rhs,UnrolledProduct>& other)
+ EIGEN_STRONG_INLINE ExpressionType& operator-=(const GeneralProduct<Lhs,Rhs,CoeffBasedProduct>& other)
{ return m_expression.derived() -= other.template flagged<0,EvalBeforeAssigningBit|EvalBeforeNestingBit>(); }
#endif