mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
fix out of bounds with empty struct
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user