AK: Always initialize vector capacity to inline_capacity

This ensures constructors that take a span or an initializer_list
don't allocate when there's already enough inline storage.
(Previously these constructors always allocated)
This commit is contained in:
MacDue 2023-02-10 20:11:16 +00:00 committed by Jelle Raaijmakers
parent e1b15b9a44
commit c0b7ff3c4c

View file

@ -55,7 +55,6 @@ private:
public:
using ValueType = T;
Vector()
: m_capacity(inline_capacity)
{
}
@ -833,7 +832,7 @@ private:
StorageType& raw_at(size_t index) { return *slot(index); }
size_t m_size { 0 };
size_t m_capacity { 0 };
size_t m_capacity { inline_capacity };
static constexpr size_t storage_size()
{