mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:27:45 +00:00
AK: Increase StringBuilder's inline buffer size from 128 to 256 bytes
This commit is contained in:
parent
d58880b5b0
commit
8a51f64503
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue