bump build_runner allocator to use 30 MB

This commit is contained in:
Andrew Kelley 2017-11-01 16:46:10 -04:00
parent 38f05d4ac5
commit f7837f445e

View File

@ -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;