1
0

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

This commit is contained in:
xeals 2023-12-02 18:36:35 +11:00
parent 362b2c2cef
commit e112876796
Signed by: xeals
SSH Key Fingerprint: SHA256:53xHRPqZPQewIgPNiVQ96gm8O4xBVzaxNj1LCSJpTf4

View File

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