You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 178: t := &Tokenizer{} // local variable declared
Line 183: doc.tokenizer = t // local variable pointer assigned to a return value struct field
Line 388: return doc, .None // return value is returned with a pointer to a local struct
I can't formulate any suggestions on resolving this as I'm only learning Odin and system languages in general.
Please, address this if possible.
I encountered this when working on generic debug visualizer which accesses data based on runtime type information and it failed when reading doc.tokenizer.path as this memory was trampled over.
The text was updated successfully, but these errors were encountered:
In
parse_bytes :: proc
Line 178:
t := &Tokenizer{} // local variable declared
Line 183:
doc.tokenizer = t // local variable pointer assigned to a return value struct field
Line 388:
return doc, .None // return value is returned with a pointer to a local struct
I can't formulate any suggestions on resolving this as I'm only learning Odin and system languages in general.
Please, address this if possible.
I encountered this when working on generic debug visualizer which accesses data based on runtime type information and it failed when reading
doc.tokenizer.path
as this memory was trampled over.The text was updated successfully, but these errors were encountered: