From d02219c58fe2487139da712e2c93d28078b096d1 Mon Sep 17 00:00:00 2001 From: Komari Spaghetti Date: Thu, 24 Jun 2021 17:36:35 +0200 Subject: Fix all new compiler errors from zig master --- build.zig | 1 + 1 file changed, 1 insertion(+) (limited to 'build.zig') diff --git a/build.zig b/build.zig index 5cbc731..fcb72b5 100644 --- a/build.zig +++ b/build.zig @@ -56,6 +56,7 @@ fn readMeStep(b: *Builder) *std.build.Step { s.* = std.build.Step.init(.Custom, "ReadMeStep", b.allocator, struct { fn make(step: *std.build.Step) anyerror!void { @setEvalBranchQuota(10000); + _ = step; const file = try std.fs.cwd().createFile("README.md", .{}); const stream = file.writer(); try stream.print(@embedFile("example/README.md.template"), .{ -- cgit v1.2.3