Commit 61cd9099e2

Timon Kruiper <timonkruiper@gmail.com>
2020-09-08 15:41:07
Zlib: Make deinit function public
1 parent 389c260
Changed files (1)
lib
std
compress
lib/std/compress/zlib.zig
@@ -62,7 +62,7 @@ pub fn ZlibStream(comptime ReaderType: type) type {
             };
         }
 
-        fn deinit(self: *Self) void {
+        pub fn deinit(self: *Self) void {
             self.allocator.free(self.window_slice);
         }