File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 9
9
# Cheers!
10
10
# -andrewrk
11
11
12
- zig-cache /
12
+ . zig-cache /
13
13
zig-out /
14
14
/release /
15
15
/debug /
16
16
/build /
17
17
/build- * /
18
- /docgen_tmp /
18
+ /docgen_tmp /
Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ pub fn build(b: *std.Build) void {
5
5
const target = b .standardTargetOptions (.{});
6
6
7
7
_ = b .addModule ("fastfilter" , .{
8
- .root_source_file = .{ . path = "src/main.zig" } ,
8
+ .root_source_file = b . path ( "src/main.zig" ) ,
9
9
});
10
10
11
11
const main_tests = b .addTest (.{
12
12
.name = "fastfilter-tests" ,
13
- .root_source_file = .{ . path = "src/main.zig" } ,
13
+ .root_source_file = b . path ( "src/main.zig" ) ,
14
14
.target = target ,
15
15
.optimize = optimize ,
16
16
});
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ pub fn main() !void {
133
133
i += 1 ;
134
134
if (i == args .len ) {
135
135
usage ();
136
- std .os .exit (1 );
136
+ std .process .exit (1 );
137
137
}
138
138
num_trials = try std .fmt .parseUnsigned (usize , args [i ], 10 );
139
139
}
You can’t perform that action at this time.
0 commit comments