From 5f1c8e5f636c714d3e2c27fd68a898b1291f825d Mon Sep 17 00:00:00 2001 From: Sebastian Proell Date: Wed, 15 Mar 2023 18:20:31 +0100 Subject: [PATCH] Doxygen: fix missing related link in ArrayView --- include/deal.II/base/array_view.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/deal.II/base/array_view.h b/include/deal.II/base/array_view.h index 2f34d18beb..5dee29438c 100644 --- a/include/deal.II/base/array_view.h +++ b/include/deal.II/base/array_view.h @@ -1070,6 +1070,8 @@ make_array_view(const std::vector &vector, * Create a writable view to an entire AlignedVector object. See the * documentation of the corresponding overload for std::vector for more * information. + * + * @relatesalso ArrayView */ template inline ArrayView @@ -1084,6 +1086,8 @@ make_array_view(AlignedVector &vector) * Create a read-only view to an entire AlignedVector object. See the * documentation of the corresponding overload for std::vector for more * information. + * + * @relatesalso ArrayView */ template inline ArrayView @@ -1098,6 +1102,8 @@ make_array_view(const AlignedVector &vector) * Create a writable view to a part of an AlignedVector object. See the * documentation of the corresponding overload for std::vector for more * information. + * + * @relatesalso ArrayView */ template inline ArrayView @@ -1118,6 +1124,8 @@ make_array_view(AlignedVector &vector, * Create a read-only view to a part of an AlignedVector object. See the * documentation of the corresponding overload for std::vector for more * information. + * + * @relatesalso ArrayView */ template inline ArrayView -- 2.39.5