1
0
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:
Alexander Medvednikov
2019-10-09 23:38:33 +03:00
parent 0796e1dd69
commit 2411b8d1e7
18 changed files with 95 additions and 42 deletions

View File

@@ -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))
}
}