mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
module cache fixes; do not allow function names starting with _
This commit is contained in:
@ -13,7 +13,7 @@ pub:
|
||||
|
||||
pub fn new_builder(initial_size int) Builder {
|
||||
return Builder {
|
||||
buf: _make(0, initial_size, sizeof(byte))
|
||||
buf: make(0, initial_size, sizeof(byte))
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user