aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Sparse/HashMatrix.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Sparse/HashMatrix.h')
-rw-r--r--Eigen/src/Sparse/HashMatrix.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/Eigen/src/Sparse/HashMatrix.h b/Eigen/src/Sparse/HashMatrix.h
index 992486f5a..0017d1998 100644
--- a/Eigen/src/Sparse/HashMatrix.h
+++ b/Eigen/src/Sparse/HashMatrix.h
@@ -42,7 +42,12 @@ struct ei_traits<HashMatrix<_Scalar, _Flags> >
// TODO reimplement this class using custom linked lists
template<typename _Scalar, int _Flags>
-class HashMatrix : public SparseMatrixBase<HashMatrix<_Scalar, _Flags> >
+class HashMatrix
+#ifndef EIGEN_PARSED_BY_DOXYGEN
+ : public SparseMatrixBase<HashMatrix<_Scalar, _Flags> >
+#else
+ : public SparseMatrixBase
+#endif
{
public:
EIGEN_GENERIC_PUBLIC_INTERFACE(HashMatrix)