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

fix windows build

This commit is contained in:
Alexander Medvednikov
2020-04-02 01:14:57 +02:00
parent 74bdc57fad
commit 1cfe44d9c6
3 changed files with 9 additions and 1 deletions

View File

@ -380,6 +380,7 @@ pub fn (a []int) str() string {
for i in 0..a.len {
val := a[i].str()
sb.write(val)
//println('"$val"')
val.free()
if i < a.len - 1 {
sb.write(', ')