Files
zig/lib/std
Lukas Lalinsky 52e06ce4f6 std.Io.Dir: fix incorrect return types in setFileOwner and setTimestampsNow
`setFileOwner` declared `SetOwnerError!void` but its vtable method
returns the wider `SetFileOwnerError!void` (adds `NameTooLong` and
`BadPathName`), so any call through the wrapper fails to compile.

`setTimestampsNow` dispatched to `io.vtable.fileSetTimestamps` with
`(Dir, []const u8, Dir.SetTimestampsOptions)`, but that vtable entry
takes `(File, File.SetTimestampsOptions)`. The intended target is
`dirSetTimestamps`, whose signature matches the call site.
2026-04-19 10:07:44 -07:00
..
2026-04-15 17:43:53 -07:00
2026-04-03 12:27:34 +02:00
2026-04-13 01:30:14 -07:00
2026-04-10 23:23:33 +02:00
2026-03-10 10:38:50 +00:00
2026-04-15 17:43:53 -07:00
2026-04-16 19:21:16 +02:00
2026-03-10 10:26:07 +00:00
2026-03-10 10:38:50 +00:00
2026-03-12 17:44:03 -04:00
2026-04-15 17:43:53 -07:00