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

cgen: remove unused var

This commit is contained in:
joe-conigliaro 2020-03-24 17:27:20 +11:00
parent e5a111396c
commit 309a905409

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()