Skip to content

Commit f7837f4

Browse files
committedNov 1, 2017
bump build_runner allocator to use 30 MB
1 parent 38f05d4 commit f7837f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎std/special/build_runner.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pub fn main() -> %void {
1414
var arg_it = os.args();
1515

1616
// TODO use a more general purpose allocator here
17-
var inc_allocator = %%std.heap.IncrementingAllocator.init(20 * 1024 * 1024);
17+
var inc_allocator = %%std.heap.IncrementingAllocator.init(30 * 1024 * 1024);
1818
defer inc_allocator.deinit();
1919

2020
const allocator = &inc_allocator.allocator;

0 commit comments

Comments
 (0)
Please sign in to comment.