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

compiler: temporary memory fix on windows

This commit is contained in:
joe-conigliaro 2019-09-14 20:09:25 +10:00 committed by Alexander Medvednikov
parent 81bf67ba4f
commit b96cbe2177

View File

@ -1068,7 +1068,7 @@ fn (p mut Parser) close_scope() {
break
}
// Clean up memory, only do this for V compiler for now
$if !windows {
if p.os != .windows {
if p.pref.building_v && v.is_alloc && !p.pref.is_test {
mut free_fn := 'free'
if v.typ.starts_with('array_') {