Skip to content

Commit 1e30ed5

Browse files
committed
Span: define doc groups.
1 parent c956a93 commit 1e30ed5

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

platform/Span.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@
2525

2626
namespace mbed {
2727

28+
/** \addtogroup platform */
29+
/** @{*/
30+
/**
31+
* \defgroup platform_Span Span class
32+
* @{
33+
*/
34+
2835
// Internal details of Span
2936
// It is used construct Span from Span of convertible types (non const -> const)
3037
namespace span_detail {
@@ -996,6 +1003,10 @@ Span<const T> make_const_Span(T *array_ptr, size_t array_size)
9961003
return Span<const T>(array_ptr, array_size);
9971004
}
9981005

1006+
/**@}*/
1007+
1008+
/**@}*/
1009+
9991010
} // namespace mbed
10001011

10011012
#endif /* MBED_PLATFORM_SPAN_H_ */

0 commit comments

Comments
 (0)