compiler: remove the temporary windows check

pull/1977/head
Alexander Medvednikov 2019-09-14 18:34:59 +03:00
parent c604a5c02f
commit 682eedce59
1 changed files with 2 additions and 2 deletions

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 p.os != .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_') {
@ -1092,7 +1092,7 @@ fn (p mut Parser) close_scope() {
} else {
p.genln('$free_fn($v.name); // close_scope free')
}
}
//}
}
}
if p.cur_fn.defer_text.last() != '' {