mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
* fix the QR module to use extract/part instead of the previous triangular stuff
* added qr and eigensolver tests * fix a compilation warning in Matrix copy constructor
This commit is contained in:
@@ -318,7 +318,7 @@ class Matrix : public MatrixBase<Matrix<_Scalar, _Rows, _Cols, _Flags, _MaxRows,
|
||||
}
|
||||
/** Copy constructor */
|
||||
inline Matrix(const Matrix& other)
|
||||
: m_storage(other.rows() * other.cols(), other.rows(), other.cols())
|
||||
: Base(), m_storage(other.rows() * other.cols(), other.rows(), other.cols())
|
||||
{
|
||||
Base::lazyAssign(other);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user