AK: Expose the memory offset of Vector's outline buffer pointer

This commit is contained in:
Andreas Kling 2023-11-06 15:19:12 +01:00
parent bdce36dddb
commit 0bbf230e4f
Notes: sideshowbarker 2024-07-17 06:35:23 +09:00

View File

@ -811,6 +811,8 @@ public:
AK::swap(at(i), at(size() - i - 1));
}
static FlatPtr outline_buffer_offset() { return OFFSET_OF(Vector, m_outline_buffer); }
private:
void reset_capacity()
{