From 0398e21198caaf7206851a9081033cddb0797d47 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 9 Feb 2010 10:02:26 +0100 Subject: s/UnrolledProduct/CoeffBasedProduct --- Eigen/src/Core/NoAlias.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Eigen/src/Core/NoAlias.h') 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 - EIGEN_STRONG_INLINE ExpressionType& operator+=(const GeneralProduct& other) + EIGEN_STRONG_INLINE ExpressionType& operator+=(const GeneralProduct& other) { return m_expression.derived() += other.template flagged<0,EvalBeforeAssigningBit|EvalBeforeNestingBit>(); } template - EIGEN_STRONG_INLINE ExpressionType& operator-=(const GeneralProduct& other) + EIGEN_STRONG_INLINE ExpressionType& operator-=(const GeneralProduct& other) { return m_expression.derived() -= other.template flagged<0,EvalBeforeAssigningBit|EvalBeforeNestingBit>(); } #endif -- cgit v1.2.3