doc + quick bug fix in Matrix ctor

This commit is contained in:
Gael Guennebaud
2008-08-28 00:33:58 +00:00
parent f7de12de69
commit 70266b4d05
7 changed files with 30 additions and 15 deletions

View File

@@ -335,7 +335,8 @@ class Matrix
inline Matrix(const MatrixBase<OtherDerived>& other)
: m_storage(other.rows() * other.cols(), other.rows(), other.cols())
{
Base::lazyAssign(other.derived());
ei_assign_selector<Matrix,OtherDerived,false>::run(*this, other.derived());
//Base::operator=(other.derived());
}
/** Copy constructor */
inline Matrix(const Matrix& other)