zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 6ac76bc25e2636bd9b2f7bb2fc5710e2aef4f8ed (tree)
parent 0720f338d4979578498aaa86766171774230a7e9
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Sat,  7 Mar 2020 19:13:05 -0500

add missing errors to std.os.windows.CreateDirectoryError

Diffstat:
Mlib/std/os/windows.zig | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/lib/std/os/windows.zig b/lib/std/os/windows.zig @@ -591,6 +591,8 @@ pub const CreateDirectoryError = error{ FileNotFound, NoDevice, AccessDenied, + InvalidUtf8, + BadPathName, Unexpected, };