zig

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

commit d089b3df7a3bfe3a6f4c160c27daf77dcdf57dae (tree)
parent b5659e02331ad1d4c273b3efe551c70bb5d92464
Author: Jacob G-W <jacoblevgw@gmail.com>
Date:   Mon,  5 Jul 2021 20:49:02 -0400

remove really weird debugging statement from stage1

Diffstat:
Msrc/stage1/os.cpp | 6------
1 file changed, 0 insertions(+), 6 deletions(-)

diff --git a/src/stage1/os.cpp b/src/stage1/os.cpp @@ -924,12 +924,6 @@ Error os_make_path(Buf *path) { Error os_make_dir(Buf *path) { #if defined(ZIG_OS_WINDOWS) PathSpace path_space = slice_to_prefixed_file_w(buf_to_slice(path)); - if (memEql(buf_to_slice(path), str("C:\\dev\\tést"))) { - for (size_t i = 0; i < path_space.len; i++) { - fprintf(stderr, "%d ", path_space.data.items[i]); - } - fprintf(stderr, "\n"); - } if (!CreateDirectoryW(&path_space.data.items[0], NULL)) { if (GetLastError() == ERROR_ALREADY_EXISTS)