[ox/std] Remove std::iterator

This commit is contained in:
Gary Talent 2022-07-14 21:37:04 -05:00
parent 94e3ed217a
commit 63c8503cb6

View File

@ -31,16 +31,6 @@ struct random_access_iterator_tag: public bidirectional_iterator_tag {
struct contiguous_iterator_tag: public random_access_iterator_tag {
};
template<typename Category, typename T, typename DiffType = std::ptrdiff_t,
typename PointerType = T*, typename ReferenceType = T&>
struct iterator {
using iterator_category = Category;
using value_type = T;
using pointer = T*;
using reference = T&;
using difference_type = DiffType;
};
}
#else
#include <iterator>