Remove unused bufSize argument from streams

This commit is contained in:
Pierre Ossman
2020-05-19 19:49:41 +02:00
committed by Lauri Kasanen
parent 281d65292a
commit 25995e2490
17 changed files with 28 additions and 35 deletions

View File

@@ -24,9 +24,8 @@
using namespace rdr;
ZlibInStream::ZlibInStream(size_t bufSize_)
: BufferedInStream(bufSize_),
underlying(0), zs(NULL), bytesIn(0)
ZlibInStream::ZlibInStream()
: underlying(0), zs(NULL), bytesIn(0)
{
init();
}