diff options
| author | Lucy <lucyperopero@gmail.com> | 2025-12-21 05:12:21 -0300 |
|---|---|---|
| committer | Lucy <lucyperopero@gmail.com> | 2025-12-21 05:12:21 -0300 |
| commit | 47f9c665dc12c3b702e2d2e8506f44367b344e24 (patch) | |
| tree | ec5e87c3a7e59cb8f4ce44e267f6fc04ec9cb7dc /src | |
| parent | 3fae1fa52ceee347940eabd8cbca0e2c7edec036 (diff) | |
Remove field type alignment
Diffstat (limited to 'src')
| -rw-r--r-- | src/odin/printer/visit.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/odin/printer/visit.odin b/src/odin/printer/visit.odin index 6294dbe..6bd0800 100644 --- a/src/odin/printer/visit.odin +++ b/src/odin/printer/visit.odin @@ -2096,7 +2096,7 @@ visit_struct_field_list :: proc(p: ^Printer, list: ^ast.Field_List, options := L length += 9 } } - align = repeat_space(alignment - length) + // align = repeat_space(alignment - length) } document = cons(document, visit_exprs(p, field.names, name_options)) } else { |