aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/DiagonalMatrix.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-08-26 19:12:23 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-08-26 19:12:23 +0000
commit00a8d314c592e63aff39e305b6c5f6a6df20ca70 (patch)
tree4e742004ee665ad42f9e782daee2f500e3890914 /Eigen/src/Core/DiagonalMatrix.h
parent3e526dcdbd48f32e733219b8793208f9cbe0f4cf (diff)
* move memory related stuff to util/Memory.h
* clean ugly doxygen inheritence of expressions * keep improving the documentation... slowly !
Diffstat (limited to 'Eigen/src/Core/DiagonalMatrix.h')
-rw-r--r--Eigen/src/Core/DiagonalMatrix.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Eigen/src/Core/DiagonalMatrix.h b/Eigen/src/Core/DiagonalMatrix.h
index 029e273e5..da7bf2dd4 100644
--- a/Eigen/src/Core/DiagonalMatrix.h
+++ b/Eigen/src/Core/DiagonalMatrix.h
@@ -56,7 +56,11 @@ struct ei_traits<DiagonalMatrix<CoeffsVectorType> >
template<typename CoeffsVectorType>
class DiagonalMatrix : ei_no_assignment_operator,
- public MatrixBase<DiagonalMatrix<CoeffsVectorType> >
+#ifndef EIGEN_PARSED_BY_DOXYGEN
+ public MatrixBase<DiagonalMatrix<CoeffsVectorType> >
+#else
+ public MatrixBase
+#endif
{
public: