From 7b6720628cbfe1dd276f08e40de0ff8667934d72 Mon Sep 17 00:00:00 2001 From: Luke Street Date: Thu, 12 May 2022 12:21:01 -0400 Subject: [PATCH] rstl: Add element_type to reserved_vector iterator Fixes macOS build --- Runtime/rstl.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Runtime/rstl.hpp b/Runtime/rstl.hpp index ad76564d8..5ea8f6fef 100644 --- a/Runtime/rstl.hpp +++ b/Runtime/rstl.hpp @@ -33,6 +33,7 @@ public: const_iterator() : m_val(nullptr) {} explicit const_iterator(const T* val) : m_val(val) {} using value_type = T; + using element_type = T; using difference_type = std::ptrdiff_t; using pointer = T*; using reference = T&;