We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1059a28 commit d710d9eCopy full SHA for d710d9e
1 file changed
vlib/builtin/string_interpolation.v
@@ -694,7 +694,7 @@ pub:
694
// interpolation function
695
@[direct_array_access; manualfree]
696
pub fn str_intp(data_len int, input_base &StrIntpData) string {
697
- mut res := strings.new_builder(256)
+ mut res := strings.new_builder(64)
698
for i := 0; i < data_len; i++ {
699
data := unsafe { &input_base[i] }
700
// avoid empty strings
0 commit comments