chore: update to latest zig nightly

This commit is contained in:
2022-02-02 21:26:12 -04:00
parent 99492a6782
commit 33399e9517
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ buf: []u8,
alloc: Allocator,
pub fn init(alloc: Allocator, path: []const u8) !Self {
const file = try std.fs.cwd().openFile(path, .{ .read = true });
const file = try std.fs.cwd().openFile(path, .{});
defer file.close();
const len = try file.getEndPos();

View File

@@ -7,7 +7,7 @@ buf: []u8,
alloc: Allocator,
pub fn init(alloc: Allocator, path: []const u8) !Self {
const file = try std.fs.cwd().openFile(path, .{ .read = true });
const file = try std.fs.cwd().openFile(path, .{});
defer file.close();
const len = try file.getEndPos();