Fix copy constructor signature

This commit is contained in:
Gael Guennebaud 2013-06-12 18:02:13 +02:00
parent f75419c711
commit d541765e85

View File

@ -344,8 +344,8 @@ class SparseLU : public internal::SparseLUImpl<typename _MatrixType::Scalar, typ
Index m_nnzL, m_nnzU; // Nonzeros in L and U factors
Index m_detPermR; // Determinant of the coefficient matrix
private:
// Copy constructor
SparseLU (SparseLU& ) {}
// Disable copy constructor
SparseLU (const SparseLU& );
}; // End class SparseLU