Pass global cache argument to Builder.create.

This commit is contained in:
antlilja 2020-12-11 00:35:15 +01:00
parent bdcd2a1e85
commit da7ce66910
No known key found for this signature in database
GPG Key ID: 58D89D8A580C73F3

View File

@ -17,7 +17,7 @@ pub fn main() !void {
const allocator = &arena.allocator;
const builder = try Builder.create(allocator, "", "", "");
const builder = try Builder.create(allocator, "", "", "", "");
defer builder.destroy();
try runBuild(builder);