[String]: Reduce initial buffer size (#971)
This commit is contained in:
parent
2d196ea313
commit
409b23d233
@ -8,7 +8,7 @@ namespace Utils::String
|
||||
const char* VA(const char* fmt, ...)
|
||||
{
|
||||
static VAProvider<4, 256> globalProvider;
|
||||
static thread_local VAProvider<8, 1024> provider;
|
||||
static thread_local VAProvider<8, 256> provider;
|
||||
|
||||
va_list ap;
|
||||
va_start(ap, fmt);
|
||||
|
Loading…
Reference in New Issue
Block a user