From 2ca0ccd2f2a88e7bae3c502ec2082178506a3d81 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sat, 7 Dec 2013 17:17:47 +0100 Subject: Add support for triangular products with evaluators --- Eigen/src/Core/NoAlias.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Eigen/src/Core/NoAlias.h') diff --git a/Eigen/src/Core/NoAlias.h b/Eigen/src/Core/NoAlias.h index 6ac525336..3c9c951f0 100644 --- a/Eigen/src/Core/NoAlias.h +++ b/Eigen/src/Core/NoAlias.h @@ -40,6 +40,8 @@ class NoAlias EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE ExpressionType& operator=(const StorageBase& other) { + // TODO either call resize here or call "call_assignment" through m_expression.lazyAssign() ?? + m_expression.resizeLike(other.derived()); call_assignment(*this, other.derived(), internal::assign_op()); return m_expression; } -- cgit v1.2.3