AK: Rename Vector::{value_type => ValueType}

This commit is contained in:
Ali Mohammad Pur 2021-06-08 15:16:32 +04:30 committed by Andreas Kling
parent c7cd81bce8
commit c3fa13fa73
Notes: sideshowbarker 2024-07-18 12:37:07 +09:00

View File

@ -33,7 +33,7 @@ namespace AK {
template<typename T, size_t inline_capacity>
class Vector {
public:
using value_type = T;
using ValueType = T;
Vector()
: m_capacity(inline_capacity)