Commit 65c943671e

Carmen <carmen@dotcarmen.dev>
2025-04-02 23:35:53
OpenMode is exhaustive
1 parent a61678b
Changed files (1)
lib
std
os
uefi
protocol
lib/std/os/uefi/protocol/file.zig
@@ -316,7 +316,6 @@ pub const File = extern struct {
         read = @bitCast(Bits{ .read = true }),
         read_write = @bitCast(Bits{ .read = true, .write = true }),
         read_write_create = @bitCast(Bits{ .read = true, .write = true, .create = true }),
-        _,
     };
 
     pub const Attributes = packed struct(u64) {