diff options
| author | 2021-06-24 17:36:35 +0200 | |
|---|---|---|
| committer | 2021-06-24 17:38:25 +0200 | |
| commit | d02219c58fe2487139da712e2c93d28078b096d1 (patch) | |
| tree | 5446e5d28c7200e810dc1b6e0c1b490ef72d2574 /build.zig | |
| parent | Tag 0.4.1 (diff) | |
| download | zig-clap-d02219c58fe2487139da712e2c93d28078b096d1.tar.gz zig-clap-d02219c58fe2487139da712e2c93d28078b096d1.tar.xz zig-clap-d02219c58fe2487139da712e2c93d28078b096d1.zip | |
Fix all new compiler errors from zig master
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 1 |
1 files changed, 1 insertions, 0 deletions
| @@ -56,6 +56,7 @@ fn readMeStep(b: *Builder) *std.build.Step { | |||
| 56 | s.* = std.build.Step.init(.Custom, "ReadMeStep", b.allocator, struct { | 56 | s.* = std.build.Step.init(.Custom, "ReadMeStep", b.allocator, struct { |
| 57 | fn make(step: *std.build.Step) anyerror!void { | 57 | fn make(step: *std.build.Step) anyerror!void { |
| 58 | @setEvalBranchQuota(10000); | 58 | @setEvalBranchQuota(10000); |
| 59 | _ = step; | ||
| 59 | const file = try std.fs.cwd().createFile("README.md", .{}); | 60 | const file = try std.fs.cwd().createFile("README.md", .{}); |
| 60 | const stream = file.writer(); | 61 | const stream = file.writer(); |
| 61 | try stream.print(@embedFile("example/README.md.template"), .{ | 62 | try stream.print(@embedFile("example/README.md.template"), .{ |