Upgrade for breaking stdlib allocator changes

This commit is contained in:
Martin Wickham 2021-12-06 13:44:34 -06:00
parent 7401807f40
commit 68670b5944

View file

@ -7,7 +7,7 @@ const BitSet = std.DynamicBitSet;
const Str = []const u8; const Str = []const u8;
var gpa_impl = std.heap.GeneralPurposeAllocator(.{}){}; var gpa_impl = std.heap.GeneralPurposeAllocator(.{}){};
pub const gpa = &gpa_impl.allocator; pub const gpa = gpa_impl.allocator();
// Add utility functions here // Add utility functions here