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:
@ -34,7 +34,7 @@ pub fn _make(len, cap, elm_size int) array {
|
||||
|
||||
*/
|
||||
|
||||
pub fn _make(len, cap, elm_size int) array {
|
||||
pub fn make(len, cap, elm_size int) array {
|
||||
return array{}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user