From 1e30ed599e517fee86b5ea8475564515643881b8 Mon Sep 17 00:00:00 2001 From: Vincent Coubard Date: Tue, 23 Oct 2018 12:15:47 +0100 Subject: [PATCH] Span: define doc groups. --- platform/Span.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/platform/Span.h b/platform/Span.h index cc5aff6930..f63a74309e 100644 --- a/platform/Span.h +++ b/platform/Span.h @@ -25,6 +25,13 @@ namespace mbed { +/** \addtogroup platform */ +/** @{*/ +/** + * \defgroup platform_Span Span class + * @{ + */ + // Internal details of Span // It is used construct Span from Span of convertible types (non const -> const) namespace span_detail { @@ -996,6 +1003,10 @@ Span make_const_Span(T *array_ptr, size_t array_size) return Span(array_ptr, array_size); } +/**@}*/ + +/**@}*/ + } // namespace mbed #endif /* MBED_PLATFORM_SPAN_H_ */