authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-12-24 20:31:37 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-12-24 20:31:37 -08:00
log60659345352a1d63c8a087c6bec784d026ceedd3
tree67f9cc5c02e7df4c89e9402dc27168494ef7ab8b
parent88e83395f79e1aa2b8188e934c4a8894f6d6bc5f

update for zig 0.9.0


1 files changed, 1 insertions(+), 1 deletions(-)

time.zig+1-1
...@@ -327,7 +327,7 @@ pub const DateTime = struct {...@@ -327,7 +327,7 @@ pub const DateTime = struct {
327 }327 }
328 }328 }
329329
330 pub fn formatAlloc(self: Self, alloc: *std.mem.Allocator, comptime fmt: string) !string {330 pub fn formatAlloc(self: Self, alloc: std.mem.Allocator, comptime fmt: string) !string {
331 var list = std.ArrayList(u8).init(alloc);331 var list = std.ArrayList(u8).init(alloc);
332 defer list.deinit();332 defer list.deinit();
333333