Former-commit-id: 96ff169e46
This commit is contained in:
Jarred Sumner
2021-05-07 01:26:26 -07:00
parent dd9e7de689
commit fad34bb4ab
49 changed files with 5815 additions and 148 deletions

View File

@@ -9,8 +9,8 @@ pub var dynamic: *std.mem.Allocator = undefined;
pub fn setup(root: *std.mem.Allocator) !void {
needs_setup = false;
static = std.heap.c_allocator;
dynamic = std.heap.c_allocator;
static = root;
dynamic = root;
// static = @ptrCast(*std.mem.Allocator, &stat.allocator);
}