fix out of bounds with empty struct

This commit is contained in:
Daniel Gavin
2021-04-28 12:53:04 +02:00
parent 51b198aa56
commit 088f4b5039
2 changed files with 7 additions and 4 deletions
+6 -1
View File
@@ -493,7 +493,8 @@ align_var_decls :: proc(p: ^Printer) {
line.format_tokens[i].kind == .Union ||
line.format_tokens[i].kind == .Enum ||
line.format_tokens[i].kind == .Struct ||
line.format_tokens[i].kind == .For {
line.format_tokens[i].kind == .For ||
line.format_tokens[i].kind == .If {
continue_flag = true;
}
@@ -772,6 +773,10 @@ align_struct :: proc(p: ^Printer, index: int) {
format_tokens := make([]TokenAndLength, brace_token.parameter_count, context.temp_allocator);
if brace_token.parameter_count == 0 {
return;
}
for line, line_index in p.lines[brace_line + 1:] {
length := 0;
+1 -3
View File
@@ -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);
}