minor improvements in triangular stuff

This commit is contained in:
Benoit Jacob
2009-11-19 20:50:50 -05:00
parent 88b551e89b
commit eac3232095
2 changed files with 2 additions and 2 deletions

View File

@@ -238,7 +238,7 @@ template<typename _MatrixType, unsigned int _Mode> class TriangularView
DenseMatrixType toDenseMatrix() const
{
DenseMatrixType res(rows(), cols());
res = *this;
evalToLazy(res);
return res;
}