mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
AK: Increase StringBuilder's inline buffer size from 128 to 256 bytes
This commit is contained in:
parent
d58880b5b0
commit
8a51f64503
Notes:
sideshowbarker
2024-07-17 22:10:54 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/8a51f64503b
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…
Reference in a new issue