From 63c8503cb64762e12094e2c055653a2588e1cfd9 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Thu, 14 Jul 2022 21:37:04 -0500 Subject: [PATCH] [ox/std] Remove std::iterator --- deps/ox/src/ox/std/iterator.hpp | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/deps/ox/src/ox/std/iterator.hpp b/deps/ox/src/ox/std/iterator.hpp index 4edaad62..917a84f0 100644 --- a/deps/ox/src/ox/std/iterator.hpp +++ b/deps/ox/src/ox/std/iterator.hpp @@ -31,16 +31,6 @@ struct random_access_iterator_tag: public bidirectional_iterator_tag { struct contiguous_iterator_tag: public random_access_iterator_tag { }; -template -struct iterator { - using iterator_category = Category; - using value_type = T; - using pointer = T*; - using reference = T&; - using difference_type = DiffType; -}; - } #else #include @@ -58,4 +48,4 @@ struct Iterator { using difference_type = DiffType; }; -} \ No newline at end of file +}