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:
@@ -47,7 +47,7 @@ fn new_hashmap(planned_nr_items int) hashmap {
|
||||
return hashmap{
|
||||
cap: cap
|
||||
elm_size: 4
|
||||
table: _make(cap, cap, sizeof(hashmapentry))
|
||||
table: make(cap, cap, sizeof(hashmapentry))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user