diff options
| author | Lucy <lucyperopero@gmail.com> | 2025-12-21 05:40:46 -0300 |
|---|---|---|
| committer | Lucy <lucyperopero@gmail.com> | 2025-12-21 05:40:46 -0300 |
| commit | f9f7cdcd6be4eb86a62a1fd2e9ec1e24867e5cb2 (patch) | |
| tree | d2d4f55ff527d706fa1724280a1f618e4b8766bf /src | |
| parent | cdb08995ff28f2188b92378d13c65db095481589 (diff) | |
Fix formatting
Diffstat (limited to 'src')
| -rw-r--r-- | src/odin/printer/visit.odin | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/odin/printer/visit.odin b/src/odin/printer/visit.odin index 9db83cd..99af62e 100644 --- a/src/odin/printer/visit.odin +++ b/src/odin/printer/visit.odin @@ -2101,8 +2101,7 @@ visit_struct_field_list :: proc(p: ^Printer, list: ^ast.Field_List, options := L } } document = cons(document, visit_exprs(p, field.names, name_options)) - } - else { + } else { document = cons_with_opl(document, visit_exprs(p, field.names, name_options)) } |