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

another v.js fix

This commit is contained in:
Alexander Medvednikov 2019-10-05 08:03:26 +03:00
parent ed99fc2d42
commit e14861694c

View File

@ -33,6 +33,11 @@ pub fn _make(len, cap, elm_size int) array {
*/
pub fn _make(len, cap, elm_size int) array {
return array{}
}
fn array_repeat(val voidptr, nr_repeats, elm_size int) array {
return val
}