mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
v.gen.c: fix v -cstrict -o vtmp_werror cmd/v
on Apple M1
This commit is contained in:
parent
5098334e65
commit
2c9f6899ba
@ -3821,7 +3821,7 @@ fn (mut g Gen) match_expr(node ast.MatchExpr) {
|
||||
g.empty_line = true
|
||||
cur_line = g.go_before_stmt(0).trim_left(' \t')
|
||||
tmp_var = g.new_tmp_var()
|
||||
g.writeln('${g.typ(node.return_type)} $tmp_var;')
|
||||
g.writeln('${g.typ(node.return_type)} $tmp_var = ${g.type_default(node.return_type)};')
|
||||
}
|
||||
|
||||
if is_expr && !need_tmp_var {
|
||||
|
Loading…
Reference in New Issue
Block a user