zig

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

commit 47e004d975669fea1297224e33a868742178c4b4 (tree)
parent 9bb19a090ea1d1d47b214974d5e18e11ef4adb85
Author: Ali Chraghi <63465728+alichraghi@users.noreply.github.com>
Date:   Tue, 15 Mar 2022 12:35:28 +0330

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

diff --git 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,