1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:17:35 +00:00

AK: Increase StringBuilder's inline buffer size from 128 to 256 bytes

This commit is contained in:
Andreas Kling 2021-12-26 01:42:58 +01:00
parent d58880b5b0
commit 8a51f64503

View file

@ -81,7 +81,7 @@ private:
u8* data() { return m_buffer.data(); }
u8 const* data() const { return m_buffer.data(); }
static constexpr size_t inline_capacity = 128;
static constexpr size_t inline_capacity = 256;
AK::Detail::ByteBuffer<inline_capacity> m_buffer;
};