diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-11 21:12:31 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-11 21:12:31 -0400 |
| commit | e90a29ed4682530243e10ae91e880ed2eeba4dfd (patch) | |
| tree | d081166740bd969c3caa811f5b05b2993eb7b39e /src/server/analysis.odin | |
| parent | 968712e40186abaf5447f69cc73b197af9d94600 (diff) | |
Correctly resolve go to definition for nested using bitfields on structs
Diffstat (limited to 'src/server/analysis.odin')
| -rw-r--r-- | src/server/analysis.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/analysis.odin b/src/server/analysis.odin index 4f70fbd..7538fe1 100644 --- a/src/server/analysis.odin +++ b/src/server/analysis.odin @@ -3432,7 +3432,7 @@ make_symbol_struct_from_ast :: proc( } b := symbol_struct_value_builder_make(symbol, ast_context.allocator) - write_struct_type(ast_context, &b, v, attributes, -1, inlined) + write_struct_type(ast_context, &b, v, attributes, -1) symbol = to_symbol(b) return symbol } |