1
0

Fix GPA decl
Some checks failed
Build and test / test (push) Failing after 2m37s

This commit is contained in:
2023-12-02 18:36:35 +11:00
parent 362b2c2cef
commit e112876796

View File

@ -1,4 +1,4 @@
const std = @import("std");
const gpa_impl = std.heap.GeneralPurposeAllocator(.{});
var gpa_impl = std.heap.GeneralPurposeAllocator(.{}){};
pub const gpa = gpa_impl.allocator();