diff --git a/Eigen/src/Householder/Householder.h b/Eigen/src/Householder/Householder.h index 9b57a4a32..12093b78d 100644 --- a/Eigen/src/Householder/Householder.h +++ b/Eigen/src/Householder/Householder.h @@ -98,7 +98,7 @@ void MatrixBase::applyHouseholderOnTheLeft( { Map::type> tmp(workspace,cols()); Block bottom(derived(), 1, 0, rows()-1, cols()); - tmp.noalias() = essential.adjoint().eval() * bottom; + tmp.noalias() = essential.adjoint() * bottom; tmp += this->row(0); this->row(0) -= tau * tmp; bottom.noalias() -= tau * essential * tmp;