We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed3ad1c commit 0fb88f8Copy full SHA for 0fb88f8
platform/cxxsupport/mstd_span
@@ -140,6 +140,8 @@ public:
140
using element_type = ElementType;
141
using value_type = typename mstd::remove_cv_t<element_type>;
142
using size_type = size_t;
143
+ // Typedef because IAR does not allow [[deprecated]] with using
144
+ [[deprecated("Use size_type instead.")]] typedef size_t index_type;
145
using difference_type = ptrdiff_t;
146
using pointer = element_type *;
147
using const_pointer = const element_type *;
0 commit comments