diff options
author | Desire NUENTSA <desire.nuentsa_wakam@inria.fr> | 2012-03-29 19:19:12 +0200 |
---|---|---|
committer | Desire NUENTSA <desire.nuentsa_wakam@inria.fr> | 2012-03-29 19:19:12 +0200 |
commit | 5dbb64619013dd3f9558aed2b7b0f2a712f34c22 (patch) | |
tree | 2f4ccb5d0356ce1843d357fe4c1001dfa584e960 /Eigen/src/UmfPackSupport | |
parent | 2d35f88bcf4ffb99e4010a4bd6029bfe01d6527d (diff) |
Add private copy constructors to sparse solvers backends
Diffstat (limited to 'Eigen/src/UmfPackSupport')
-rw-r--r-- | Eigen/src/UmfPackSupport/UmfPackSupport.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Eigen/src/UmfPackSupport/UmfPackSupport.h b/Eigen/src/UmfPackSupport/UmfPackSupport.h index 636bba87d..225ab63f8 100644 --- a/Eigen/src/UmfPackSupport/UmfPackSupport.h +++ b/Eigen/src/UmfPackSupport/UmfPackSupport.h @@ -318,6 +318,9 @@ class UmfPackLU int m_factorizationIsOk; int m_analysisIsOk; mutable bool m_extractedDataAreDirty; + + private: + UmfPackLU(UmfPackLU& ) { } }; |