aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-01-13 08:30:17 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-01-13 08:30:17 +0000
commitec0b2f900c8850799cf803ab6e0ee64f101e8e9a (patch)
tree5a71fe51905e38f2e8eba493a999189fd9c359ec /Eigen
parentb179f8e1a49138c4a0e13d4a861a3f670c975386 (diff)
fix a couple of doxygen issues
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/Core/Coeffs.h4
-rw-r--r--Eigen/src/Core/Matrix.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/Eigen/src/Core/Coeffs.h b/Eigen/src/Core/Coeffs.h
index 33a91e61f..23a84228b 100644
--- a/Eigen/src/Core/Coeffs.h
+++ b/Eigen/src/Core/Coeffs.h
@@ -313,6 +313,8 @@ EIGEN_STRONG_INLINE void MatrixBase<Derived>::writePacket
derived().template writePacket<StoreMode>(index,x);
}
+#ifndef EIGEN_PARSED_BY_DOXYGEN
+
/** \internal Copies the coefficient at position (row,col) of other into *this.
*
* This method is overridden in SwapWrapper, allowing swap() assignments to share 99% of their code
@@ -377,4 +379,6 @@ EIGEN_STRONG_INLINE void MatrixBase<Derived>::copyPacket(int index, const Matrix
other.derived().template packet<LoadMode>(index));
}
+#endif
+
#endif // EIGEN_COEFFS_H
diff --git a/Eigen/src/Core/Matrix.h b/Eigen/src/Core/Matrix.h
index 75c79d2fd..b2f000afd 100644
--- a/Eigen/src/Core/Matrix.h
+++ b/Eigen/src/Core/Matrix.h
@@ -100,6 +100,7 @@
* when the exact numbers of rows and columns are not known are compile-time, but it is known at compile-time that they cannot
* exceed a certain value. This happens when taking dynamic-size blocks inside fixed-size matrices: in this case _MaxRows and _MaxCols
* are the dimensions of the original matrix, while _Rows and _Cols are Dynamic.</dd>
+ * </dl>
*
* \see MatrixBase for the majority of the API methods for matrices
*/