Skip to content

Commit

Permalink
bump build_runner allocator to use 30 MB
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewrk committed Nov 1, 2017
1 parent 38f05d4 commit f7837f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/special/build_runner.zig
Expand Up @@ -14,7 +14,7 @@ pub fn main() -> %void {
var arg_it = os.args();

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

const allocator = &inc_allocator.allocator;
Expand Down

0 comments on commit f7837f4

Please sign in to comment.