aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Eigen/src/Core/Ref.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Eigen/src/Core/Ref.h b/Eigen/src/Core/Ref.h
index ce9e82913..665b7497a 100644
--- a/Eigen/src/Core/Ref.h
+++ b/Eigen/src/Core/Ref.h
@@ -239,7 +239,11 @@ template<typename TPlainObjectType, int Options, typename StrideType> class Ref<
template<typename Expression>
void construct(const Expression& expr, internal::false_type)
{
+#ifdef EIGEN_TEST_EVALUATORS
+ internal::call_assignment_no_alias(m_object,expr,internal::assign_op<Scalar>());
+#else
m_object.lazyAssign(expr);
+#endif
Base::construct(m_object);
}