aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/NoAlias.h
diff options
context:
space:
mode:
authorGravatar Chen-Pang He <jdh8@ms63.hinet.net>2012-09-24 23:36:19 +0800
committerGravatar Chen-Pang He <jdh8@ms63.hinet.net>2012-09-24 23:36:19 +0800
commitd387dfa9dcedf474873691f230a9d6b85ec9ef57 (patch)
treec767c03006c07115cbec52bfa661d5d3deca66f9 /Eigen/src/Core/NoAlias.h
parent334532b7f56728e425dca64007ff7a3b6857d79f (diff)
Remove unnecessary code. lazyAssign seems to fix all (noalias, initialization, etc.)
Diffstat (limited to 'Eigen/src/Core/NoAlias.h')
-rw-r--r--Eigen/src/Core/NoAlias.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/Eigen/src/Core/NoAlias.h b/Eigen/src/Core/NoAlias.h
index ac1396f68..0112c865b 100644
--- a/Eigen/src/Core/NoAlias.h
+++ b/Eigen/src/Core/NoAlias.h
@@ -80,10 +80,6 @@ class NoAlias
template<typename Lhs, typename Rhs, int NestingFlags>
EIGEN_STRONG_INLINE ExpressionType& operator-=(const CoeffBasedProduct<Lhs,Rhs,NestingFlags>& other)
{ return m_expression.derived() -= CoeffBasedProduct<Lhs,Rhs,NestByRefBit>(other.lhs(), other.rhs()); }
-
- template<typename Derived, typename Lhs, typename Rhs>
- EIGEN_STRONG_INLINE ExpressionType& operator=(const MatrixPowerProductBase<Derived,Lhs,Rhs>& other)
- { other.derived().evalTo(m_expression); return m_expression; }
#endif
ExpressionType& expression() const