Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cpp/common/test/includes/standard-library/array
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ namespace std {
template <class T, size_t N> struct array {
typedef T &reference;
typedef const T &const_reference;
typedef std::iterator<random_access_iterator_tag, T> iterator;
typedef std::iterator<random_access_iterator_tag, T> const_iterator;
typedef __iterator<T> iterator;
typedef __iterator<const T> const_iterator;
typedef size_t size_type;

typedef ptrdiff_t difference_type;
Expand Down
Loading