aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SparseCore/SparseMatrix.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-10-08 22:06:49 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-10-08 22:06:49 +0200
commit186ec1437cc59414ff7539cb06637c8de2be2ee9 (patch)
treec2a4ca145cd8c53fc1f159334cb40e4fa4bdf73b /Eigen/src/SparseCore/SparseMatrix.h
parentc9718514f59844f1811685c6703389fc95195864 (diff)
Cleanup EIGEN_SPARSE_PUBLIC_INTERFACE, it is now a simple alias to EIGEN_GENERIC_PUBLIC_INTERFACE
Diffstat (limited to 'Eigen/src/SparseCore/SparseMatrix.h')
-rw-r--r--Eigen/src/SparseCore/SparseMatrix.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Eigen/src/SparseCore/SparseMatrix.h b/Eigen/src/SparseCore/SparseMatrix.h
index 14b196480..4cf3145fd 100644
--- a/Eigen/src/SparseCore/SparseMatrix.h
+++ b/Eigen/src/SparseCore/SparseMatrix.h
@@ -92,11 +92,12 @@ template<typename _Scalar, int _Options, typename _Index>
class SparseMatrix
: public SparseCompressedBase<SparseMatrix<_Scalar, _Options, _Index> >
{
- public:
typedef SparseCompressedBase<SparseMatrix> Base;
+ using Base::convert_index;
+ public:
using Base::isCompressed;
using Base::nonZeros;
- _EIGEN_SPARSE_PUBLIC_INTERFACE(SparseMatrix)
+ EIGEN_SPARSE_PUBLIC_INTERFACE(SparseMatrix)
using Base::operator+=;
using Base::operator-=;