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

autofree: free strings

This commit is contained in:
Alexander Medvednikov
2019-09-19 14:01:02 +03:00
parent 486b3d2f92
commit f629069572
2 changed files with 4 additions and 1 deletions

View File

@ -193,6 +193,9 @@ fn main() {
v.cgen.lines.free()
free(v.cgen)
free(v.table)
//for p in parsers {
//}
println('done!')
}
}