Fix copy ctor prototype.

This commit is contained in:
Gael Guennebaud 2016-05-26 17:37:25 +02:00
parent c7f54b11ec
commit e08f54e9eb

View File

@ -379,7 +379,7 @@ class UmfPackLU : public SparseSolverBase<UmfPackLU<_MatrixType> >
mutable bool m_extractedDataAreDirty; mutable bool m_extractedDataAreDirty;
private: private:
UmfPackLU(UmfPackLU& ) { } UmfPackLU(const UmfPackLU& ) { }
}; };