aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/UmfPackSupport
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2012-06-04 13:21:15 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2012-06-04 13:21:15 +0200
commita2ae0634917aaa653d0c22f16ac902f8df9964ce (patch)
treedc73a86c1b69a2818208ce3d7cf1527b5c561c58 /Eigen/src/UmfPackSupport
parent1b20e1654660fd084314da6ac75dfc11fa2eb02a (diff)
add a noncopyable base class for decompositions
Diffstat (limited to 'Eigen/src/UmfPackSupport')
-rw-r--r--Eigen/src/UmfPackSupport/UmfPackSupport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/UmfPackSupport/UmfPackSupport.h b/Eigen/src/UmfPackSupport/UmfPackSupport.h
index 9b09241b9..84f98ffd3 100644
--- a/Eigen/src/UmfPackSupport/UmfPackSupport.h
+++ b/Eigen/src/UmfPackSupport/UmfPackSupport.h
@@ -136,7 +136,7 @@ inline int umfpack_get_determinant(std::complex<double> *Mx, double *Ex, void *N
* \sa \ref TutorialSparseDirectSolvers
*/
template<typename _MatrixType>
-class UmfPackLU
+class UmfPackLU : internal::noncopyable
{
public:
typedef _MatrixType MatrixType;