diff options
| author | gingerBill <bill@gingerbill.org> | 2024-06-28 11:07:54 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-06-28 11:07:54 +0100 |
| commit | 1747fdc3f0a88ddf851c5b2a58c4f2e04e532b84 (patch) | |
| tree | 4b8b9f0f30f820676398f4e4f9284c381dc31fed /core/debug | |
| parent | bef3ca98f03ed5ff77b2a8b67975ec3e4cfded6a (diff) | |
Fix signature
Diffstat (limited to 'core/debug')
| -rw-r--r-- | core/debug/trace/trace_nil.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/debug/trace/trace_nil.odin b/core/debug/trace/trace_nil.odin index a7f5c10fd..8611d7726 100644 --- a/core/debug/trace/trace_nil.odin +++ b/core/debug/trace/trace_nil.odin @@ -15,6 +15,6 @@ _destroy :: proc(ctx: ^Context) -> bool { _frames :: proc(ctx: ^Context, skip: uint, frames_buffer: []Frame) -> []Frame { return nil } -_resolve :: proc(ctx: ^Context, frame: Frame, allocator: runtime.Allocator) -> (result: runtime.Source_Code_Location) { +_resolve :: proc(ctx: ^Context, frame: Frame, allocator: runtime.Allocator) -> (result: Frame_Location) { return } |