| author | |
| committer | |
| log | f2f474fc785a9bc89f16f91067480e8c410dc773 |
| tree | 2eb2cdcd850eb64cdee2c202f9d53c7cb3911487 |
| parent | 6ca1c88e46352b006c26d4c99944ac0c70fe28e7 |
1 files changed, 2 insertions(+), 2 deletions(-)
lib/std/Io/Dir.zig+2-2| ... | ... | @@ -373,8 +373,8 @@ pub const Walker = struct { |
| 373 | 373 | /// Leaves the current directory, continuing walking one level up. |
| 374 | 374 | /// If the current entry is a directory entry, then the "current directory" |
| 375 | 375 | /// 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); | |
| 378 | 378 | } |
| 379 | 379 | }; |
| 380 | 380 |