aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Sparse/LinkedVectorMatrix.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Sparse/LinkedVectorMatrix.h')
-rw-r--r--Eigen/src/Sparse/LinkedVectorMatrix.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/Eigen/src/Sparse/LinkedVectorMatrix.h b/Eigen/src/Sparse/LinkedVectorMatrix.h
index 969aee57b..2ffb1d930 100644
--- a/Eigen/src/Sparse/LinkedVectorMatrix.h
+++ b/Eigen/src/Sparse/LinkedVectorMatrix.h
@@ -52,7 +52,12 @@ struct LinkedVectorChunk
};
template<typename _Scalar, int _Flags>
-class LinkedVectorMatrix : public SparseMatrixBase<LinkedVectorMatrix<_Scalar,_Flags> >
+class LinkedVectorMatrix
+#ifndef EIGEN_PARSED_BY_DOXYGEN
+ : public SparseMatrixBase<LinkedVectorMatrix<_Scalar,_Flags> >
+#else
+ : public SparseMatrixBase
+#endif
{
public:
EIGEN_GENERIC_PUBLIC_INTERFACE(LinkedVectorMatrix)