zig fmt :|

This commit is contained in:
Karl Seguin
2025-04-15 21:16:20 +08:00
parent ea6f8ce4d9
commit 753a093689
2 changed files with 11 additions and 12 deletions

View File

@@ -408,15 +408,12 @@ pub const TrackingAllocator = struct {
}
pub fn allocator(self: *TrackingAllocator) Allocator {
return .{
.ptr = self,
.vtable = &.{
.alloc = alloc,
.resize = resize,
.free = free,
.remap = remap,
}
};
return .{ .ptr = self, .vtable = &.{
.alloc = alloc,
.resize = resize,
.free = free,
.remap = remap,
} };
}
fn alloc(