cgen: remove unused var

pull/4110/head
joe-conigliaro 2020-03-24 17:27:20 +11:00
parent e5a111396c
commit 309a905409
1 changed files with 0 additions and 1 deletions

View File

@ -376,7 +376,6 @@ fn (g mut Gen) stmt(node ast.Stmt) {
else if it.kind == .map {
// `for num in nums {`
g.writeln('// FOR IN')
cond_styp := g.typ(it.cond_type)
key_styp := g.typ(it.key_type)
val_styp := g.typ(it.val_type)
keys_tmp := 'keys_' + g.new_tmp_var()