Remove unused bufSize argument from streams
This commit is contained in:
committed by
Lauri Kasanen
parent
281d65292a
commit
25995e2490
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user