[ox/std] Add size_type and value_type to Vector

(synced from 72f53b08cb)
This commit is contained in:
2021-05-05 17:00:37 -04:00
parent 84f115a7d8
commit 0931f1b096
+4
View File
@@ -18,6 +18,10 @@ namespace ox {
template<typename T>
class Vector {
public:
using value_type = T;
using size_type = std::size_t;
private:
std::size_t m_size = 0;
std::size_t m_cap = 0;