Zlib: Make deinit function public

master
Timon Kruiper 2020-09-08 15:41:07 +02:00 committed by Andrew Kelley
parent 389c260252
commit 61cd9099e2
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}