the default ctor had no sense because of the const reference member

This commit is contained in:
Gael Guennebaud 2012-01-31 23:12:04 +01:00
parent 13e46ad847
commit 7002639844

View File

@ -57,7 +57,6 @@ class LU : public FullPivLU<MatrixType>
> ImageResultType;
typedef FullPivLU<MatrixType> Base;
LU() : Base(), m_originalMatrix() {}
template<typename T>
explicit LU(const T& t) : Base(t), m_originalMatrix(t) {}