aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-09-09 11:47:36 -0700
committerAndrew Kelley <andrew@ziglang.org>2022-12-14 14:26:02 -0700
commitbac4a5c1969ccb8b1d5cbac429462d2ad878fbe5 (patch)
treea33516eb2ae152dae3b81018ad47bd2a35af3cfe /lib
parent353121d9d57d9dfcd734cd3b4b65d826f7eb00ee (diff)
downloadzig-bac4a5c1969ccb8b1d5cbac429462d2ad878fbe5.tar.gz
zig-bac4a5c1969ccb8b1d5cbac429462d2ad878fbe5.zip
std: remove a solved TODO comment
Diffstat (limited to 'lib')
-rw-r--r--lib/std/fs.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/std/fs.zig b/lib/std/fs.zig
index 31f118c190..d2df596b3e 100644
--- a/lib/std/fs.zig
+++ b/lib/std/fs.zig
@@ -150,7 +150,6 @@ pub fn copyFileAbsolute(source_path: []const u8, dest_path: []const u8, args: Co
return Dir.copyFile(my_cwd, source_path, my_cwd, dest_path, args);
}
-/// TODO update this API to avoid a getrandom syscall for every operation.
pub const AtomicFile = struct {
file: File,
// TODO either replace this with rand_buf or use []u16 on Windows