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.
std::iterator<...>
__iterator
1 parent 950c719 commit 9ea891aCopy full SHA for 9ea891a
cpp/common/test/includes/standard-library/array
@@ -8,8 +8,8 @@ namespace std {
8
template <class T, size_t N> struct array {
9
typedef T &reference;
10
typedef const T &const_reference;
11
- typedef std::iterator<random_access_iterator_tag, T> iterator;
12
- typedef std::iterator<random_access_iterator_tag, T> const_iterator;
+ typedef __iterator<T> iterator;
+ typedef __iterator<const T> const_iterator;
13
typedef size_t size_type;
14
15
typedef ptrdiff_t difference_type;
0 commit comments