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

array: remove temporary repeat2()

This commit is contained in:
Alexander Medvednikov
2019-09-19 05:22:24 +03:00
parent cb31eeec55
commit a94c1556ce
10 changed files with 11 additions and 26 deletions

View File

@ -5,7 +5,7 @@ pub fn repeat(c byte, n int) string {
return ''
}
//mut arr := malloc(n + 1)
mut arr := [byte(0)].repeat2(n + 1)
mut arr := [byte(0)].repeat(n + 1)
for i := 0; i < n; i++ {
arr[i] = c
}