[ox] Fix for MSVC
This commit is contained in:
2
deps/ox/src/ox/std/array.hpp
vendored
2
deps/ox/src/ox/std/array.hpp
vendored
@@ -28,7 +28,7 @@ class Array {
|
||||
using size_type = std::size_t;
|
||||
|
||||
template<typename RefType = T&, typename PtrType = T*, bool reverse = false>
|
||||
struct iterator: public std::iterator<std::bidirectional_iterator_tag, T> {
|
||||
struct iterator: public Iterator<std::bidirectional_iterator_tag, T> {
|
||||
private:
|
||||
PtrType m_t = nullptr;
|
||||
size_type m_offset = 0;
|
||||
|
||||
Reference in New Issue
Block a user