authorgravatar for nyx-xyn@nyru.xyznyx-xyn <nyx-xyn@nyru.xyz> 2025-12-29 00:05:37+01:00
committergravatar for nyx-xyn@nyru.xyznyx-xyn <nyx-xyn@nyru.xyz> 2025-12-29 00:36:57+01:00
logf2f474fc785a9bc89f16f91067480e8c410dc773
tree2eb2cdcd850eb64cdee2c202f9d53c7cb3911487
parent6ca1c88e46352b006c26d4c99944ac0c70fe28e7

std.Io.Dir: pass io to Walker.leave


1 files changed, 2 insertions(+), 2 deletions(-)

lib/std/Io/Dir.zig+2-2
......@@ -373,8 +373,8 @@ pub const Walker = struct {
373373 /// Leaves the current directory, continuing walking one level up.
374374 /// If the current entry is a directory entry, then the "current directory"
375375 /// is the directory pertaining to the current entry.
376 pub fn leave(self: *Walker) void {
377 self.inner.leave();
376 pub fn leave(self: *Walker, io: Io) void {
377 self.inner.leave(io);
378378 }
379379};
380380