Reduce max_string_pad_size from 1<<20 to 1<<14

This commit is contained in:
Jari Sundell
2026-08-14 19:27:04 +09:00
parent 68904ba005
commit 6fa139f7bf
+1 -1
View File
@@ -19,7 +19,7 @@
namespace {
constexpr int64_t max_string_pad_size = 1 << 20;
constexpr int64_t max_string_pad_size = 1 << 14;
const std::string whitespace_characters = " \t\n\r\f\v";