another v.js fix

pull/2233/head
Alexander Medvednikov 2019-10-05 08:03:26 +03:00
parent ed99fc2d42
commit e14861694c
1 changed files with 5 additions and 0 deletions

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
}