From f072313e1e8881dcd3b360b03e30397d705c1d00 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sat, 3 Jan 2026 17:09:56 -0800 Subject: [PATCH] std.Io.Threaded: delete dead comment The problem it talked about is solved now that the direct call to dirOpenDirWindows makes sense in this context. --- lib/std/Io/Threaded.zig | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/std/Io/Threaded.zig b/lib/std/Io/Threaded.zig index c96ec0c0e8..f5f7b5fcff 100644 --- a/lib/std/Io/Threaded.zig +++ b/lib/std/Io/Threaded.zig @@ -13772,11 +13772,6 @@ fn windowsCreateProcessPathExt( // we iterate the matches and take note of any that are either the unappended version, // or a version with a supported PATHEXT appended. We then try calling CreateProcessW // with the found versions in the appropriate order. - - // In the future, child process execution needs to move to Io implementation. - // Under those conditions, here we will have access to lower level directory - // opening function knowing which implementation we are in. Here, we imitate - // that scenario. var dir = dir: { // needs to be null-terminated try dir_buf.append(arena, 0);