aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/UmfPackSupport
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-05-26 17:37:25 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-05-26 17:37:25 +0200
commite08f54e9eb7ff47ccbfdd6d50c0992019eb11171 (patch)
tree734ba1c98741ae0dfc3a2ab094889fdde55e747a /Eigen/src/UmfPackSupport
parentc7f54b11ec453c08d35042e5af31179f0da47eb9 (diff)
Fix copy ctor prototype.
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 929a01acb..dc74de935 100644
--- a/Eigen/src/UmfPackSupport/UmfPackSupport.h
+++ b/Eigen/src/UmfPackSupport/UmfPackSupport.h
@@ -379,7 +379,7 @@ class UmfPackLU : public SparseSolverBase<UmfPackLU<_MatrixType> >
mutable bool m_extractedDataAreDirty;
private:
- UmfPackLU(UmfPackLU& ) { }
+ UmfPackLU(const UmfPackLU& ) { }
};