authorgravatar for timonkruiper@gmail.comTimon Kruiper <timonkruiper@gmail.com> 2020-09-08 15:41:07+02:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-09-08 12:21:49-04:00
log61cd9099e2edfc363a932b3726e127c9ba3d6ee9
tree81e2be965823fbada4d8ac9940214bdcb2487ca0
parent389c26025283edef2206d19d9ad1ddc41e98f007

Zlib: Make deinit function public


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

lib/std/compress/zlib.zig+1-1
...@@ -62,7 +62,7 @@ pub fn ZlibStream(comptime ReaderType: type) type {...@@ -62,7 +62,7 @@ pub fn ZlibStream(comptime ReaderType: type) type {
62 };62 };
63 }63 }
6464
65 fn deinit(self: *Self) void {65 pub fn deinit(self: *Self) void {
66 self.allocator.free(self.window_slice);66 self.allocator.free(self.window_slice);
67 }67 }
6868