authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2020-07-15 20:33:21+02:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2020-07-22 08:51:22+02:00
logdd366d316d0b3555864145494b28fdb6e090a3f2
treed1484332bf9ff09c6d850abfb746991d27901ad8
parent08e7ac3028da4503d709553a6c12e5751c6ce4fb

Fix more compilation errors on other hosts


1 files changed, 3 insertions(+), 0 deletions(-)

lib/std/zig/system.zig+3
...@@ -820,6 +820,9 @@ pub const NativeTargetInfo = struct {...@@ -820,6 +820,9 @@ pub const NativeTargetInfo = struct {
820 &link_buf,820 &link_buf,
821 ) catch |err| switch (err) {821 ) catch |err| switch (err) {
822 error.NameTooLong => unreachable,822 error.NameTooLong => unreachable,
823 error.InvalidUtf8 => unreachable, // Windows only
824 error.BadPathName => unreachable, // Windows only
825 error.UnsupportedReparsePointType => unreachable, // Windows only
823826
824 error.AccessDenied,827 error.AccessDenied,
825 error.FileNotFound,828 error.FileNotFound,