mirror of
https://github.com/ziglang/zig.git
synced 2026-02-12 20:37:54 +00:00
typo
This commit is contained in:
parent
f7e0ff8a5f
commit
950a9d2a10
@ -23,8 +23,8 @@ pub const DebugInfo = struct {
|
||||
};
|
||||
pub fn deinit(di: *DebugInfo, gpa: Allocator) void {
|
||||
if (di.loaded_elf) |*loaded_elf| loaded_elf.deinit(gpa);
|
||||
for (di.unwind) |*opt_unwind| {
|
||||
const unwind = &(opt_unwind orelse continue);
|
||||
for (&di.unwind) |*opt_unwind| {
|
||||
const unwind = &(opt_unwind.* orelse continue);
|
||||
unwind.deinit(gpa);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user