We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a33b97 commit c9e423dCopy full SHA for c9e423d
include/gsl/span
@@ -121,6 +121,12 @@ namespace details
121
using element_type_ = typename Span::element_type;
122
123
public:
124
+
125
+#ifdef _MSC_VER
126
+ // Tell Microsoft standard library that span_iterators are checked.
127
+ using _Unchecked_type = typename Span::pointer;
128
+#endif
129
130
using iterator_category = std::random_access_iterator_tag;
131
using value_type = std::remove_cv_t<element_type_>;
132
using difference_type = typename Span::index_type;
0 commit comments