diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-30 20:27:14 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-30 20:40:49 -0400 |
| commit | cbe778366f874a9328c9e191ce51c51e417a3026 (patch) | |
| tree | 0ad2c5660bad17e47cd072fc471db3ee0f004682 /src/server/symbol.odin | |
| parent | fdec06dd815b2074a938a390ad15d798b4d24159 (diff) | |
Don't override the docs on the symbols to avoid memory corruption issues
Diffstat (limited to 'src/server/symbol.odin')
| -rw-r--r-- | src/server/symbol.odin | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/server/symbol.odin b/src/server/symbol.odin index 7700362..d933819 100644 --- a/src/server/symbol.odin +++ b/src/server/symbol.odin @@ -788,9 +788,7 @@ construct_bit_field_field_symbol :: proc(symbol: ^Symbol, parent_name: string, v symbol.type = .Field symbol.doc = get_doc(value.docs[index], context.temp_allocator) symbol.comment = get_comment(value.comments[index]) - symbol.doc = construct_symbol_docs(symbol^) symbol.signature = get_bit_field_field_signature(value, index) - //build_bit_field_field_documentation(symbol, value, index) } construct_enum_field_symbol :: proc(symbol: ^Symbol, value: SymbolEnumValue, index: int) { |