A couple small zig cleanup things (#20196)

This commit is contained in:
Jarred Sumner
2025-06-05 05:11:28 -07:00
committed by GitHub
parent c82345c0a0
commit f62940bbda
2 changed files with 42 additions and 42 deletions

View File

@@ -52,7 +52,7 @@ pub fn NewIterator(comptime use_windows_ospath: bool) type {
.macos, .ios, .freebsd, .netbsd, .dragonfly, .openbsd, .solaris => struct {
dir: Dir,
seek: i64,
buf: [8192]u8, // TODO align(@alignOf(os.system.dirent)),
buf: [8192]u8 align(@alignOf(std.posix.system.dirent)),
index: usize,
end_index: usize,
received_eof: bool = false,