diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-08-02 21:22:33 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-08-07 00:48:32 -0700 |
| commit | 66954e833051872308641b3a1af12aa865d5d59a (patch) | |
| tree | a20b0eed54f21d5081acea7f4d8387fdc3ace4a0 /lib/std/debug/SelfInfo.zig | |
| parent | de47acd732dca8b4d2f2b3559307f488ccac940d (diff) | |
| download | zig-66954e833051872308641b3a1af12aa865d5d59a.tar.gz zig-66954e833051872308641b3a1af12aa865d5d59a.zip | |
std.debug.FixedBufferReader is fine
it does not need to be deprecated
Diffstat (limited to 'lib/std/debug/SelfInfo.zig')
| -rw-r--r-- | lib/std/debug/SelfInfo.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/debug/SelfInfo.zig b/lib/std/debug/SelfInfo.zig index 79cbd19a41..ba0d7bc039 100644 --- a/lib/std/debug/SelfInfo.zig +++ b/lib/std/debug/SelfInfo.zig @@ -1576,7 +1576,7 @@ pub fn unwindFrameDwarf( const frame_section = di.section(dwarf_section) orelse return error.MissingFDE; if (fde_offset >= frame_section.len) return error.MissingFDE; - var fbr: std.debug.DeprecatedFixedBufferReader = .{ + var fbr: std.debug.FixedBufferReader = .{ .buf = frame_section, .pos = fde_offset, .endian = di.endian, |
