From 1092574b26161ff5beea2b6ee0e302a61172a865 Mon Sep 17 00:00:00 2001 From: Mathieu Westphal Date: Tue, 12 Jul 2022 13:22:46 +0200 Subject: [PATCH] Fix wrong doxygen group usage --- Eigen/src/Core/PlainObjectBase.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Eigen/src/Core/PlainObjectBase.h b/Eigen/src/Core/PlainObjectBase.h index e0bde5478..222eaf5f6 100644 --- a/Eigen/src/Core/PlainObjectBase.h +++ b/Eigen/src/Core/PlainObjectBase.h @@ -638,7 +638,7 @@ class PlainObjectBase : public internal::dense_xpr_base::type * * \see class Map */ - //@{ + ///@{ static inline ConstMapType Map(const Scalar* data) { return ConstMapType(data); } static inline MapType Map(Scalar* data) @@ -702,7 +702,7 @@ class PlainObjectBase : public internal::dense_xpr_base::type template static inline typename StridedAlignedMapType >::type MapAligned(Scalar* data, Index rows, Index cols, const Stride& stride) { return typename StridedAlignedMapType >::type(data, rows, cols, stride); } - //@} + ///@} using Base::setConstant; EIGEN_DEVICE_FUNC Derived& setConstant(Index size, const Scalar& val);