aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SparseLU/SparseLU.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2013-06-12 18:02:13 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2013-06-12 18:02:13 +0200
commitd541765e855c376d1abe053889dca39e2cd4e0e2 (patch)
treeb387ea5b8d0cf4e7e8985079421a433406d287bd /Eigen/src/SparseLU/SparseLU.h
parentf75419c711b3df73ca1e9b5af94db28d437a0698 (diff)
Fix copy constructor signature
Diffstat (limited to 'Eigen/src/SparseLU/SparseLU.h')
-rw-r--r--Eigen/src/SparseLU/SparseLU.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/SparseLU/SparseLU.h b/Eigen/src/SparseLU/SparseLU.h
index c8dcbfa21..ee79c7762 100644
--- a/Eigen/src/SparseLU/SparseLU.h
+++ b/Eigen/src/SparseLU/SparseLU.h
@@ -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