1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

parser/cgen: default struct field values

This commit is contained in:
Alexander Medvednikov
2020-04-06 14:45:28 +02:00
parent f099f90f50
commit 35fbac8d56
8 changed files with 23 additions and 18 deletions

View File

@ -8,7 +8,7 @@ mut:
buf []byte
pub mut:
len int
initial_size int=1
initial_size int = 1
}
pub fn new_builder(initial_size int) Builder {