From 47e004d975669fea1297224e33a868742178c4b4 Mon Sep 17 00:00:00 2001 From: Ali Chraghi <63465728+alichraghi@users.noreply.github.com> Date: Tue, 15 Mar 2022 12:35:28 +0330 Subject: [PATCH] remove TODO --- lib/std/fs/file.zig | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/std/fs/file.zig b/lib/std/fs/file.zig index 079d5905a1..568c34e0ac 100644 --- a/lib/std/fs/file.zig +++ b/lib/std/fs/file.zig @@ -77,7 +77,6 @@ pub const File = struct { pub const Lock = enum { None, Shared, Exclusive }; - /// TODO https://github.com/ziglang/zig/issues/3802 pub const OpenFlags = struct { mode: OpenMode = .read_only, @@ -133,7 +132,6 @@ pub const File = struct { } }; - /// TODO https://github.com/ziglang/zig/issues/3802 pub const CreateFlags = struct { /// Whether the file will be created with read access. read: bool = false,