diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-08-16 19:32:05 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-08-28 18:30:57 -0700 |
| commit | cc931660eb3e5b7251944c727808aa36e72c1e52 (patch) | |
| tree | c6564aff1d2e77163cfce1cd8e599a187ce9274a /lib/std | |
| parent | 2dc6ddd7e8cfb83f5ffd57b8b40f33dde9de892d (diff) | |
| download | zig-cc931660eb3e5b7251944c727808aa36e72c1e52.tar.gz zig-cc931660eb3e5b7251944c727808aa36e72c1e52.zip | |
link.MachO: update to not use GenericWriter
Diffstat (limited to 'lib/std')
| -rw-r--r-- | lib/std/Io/Writer.zig | 1 | ||||
| -rw-r--r-- | lib/std/macho.zig | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/lib/std/Io/Writer.zig b/lib/std/Io/Writer.zig index 42f4693786..384faff62e 100644 --- a/lib/std/Io/Writer.zig +++ b/lib/std/Io/Writer.zig @@ -2381,6 +2381,7 @@ pub fn fromArrayList(array_list: *ArrayList(u8)) Writer { .vtable = &.{ .drain = fixedDrain, .flush = noopFlush, + .rebase = failingRebase, }, .buffer = array_list.allocatedSlice(), .end = array_list.items.len, diff --git a/lib/std/macho.zig b/lib/std/macho.zig index 75aa91e536..a1d23d8b18 100644 --- a/lib/std/macho.zig +++ b/lib/std/macho.zig @@ -1883,10 +1883,8 @@ pub const GenericBlob = extern struct { pub const data_in_code_entry = extern struct { /// From mach_header to start of data range. offset: u32, - /// Number of bytes in data range. length: u16, - /// A DICE_KIND value. kind: u16, }; |
