mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
fix out of bounds with empty struct
This commit is contained in:
@@ -487,9 +487,7 @@ visit_exprs :: proc(p: ^Printer, list: []^ast.Expr, add_comma := false, trailing
|
||||
//Don't move the first expression, it looks bad
|
||||
if i != 0 && force_newline {
|
||||
newline_position(p, 1);
|
||||
}
|
||||
|
||||
else if i != 0 {
|
||||
} else if i != 0 {
|
||||
move_line_limit(p, expr.pos, 1);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user