Remove unused bufSize argument from streams
This commit is contained in:
committed by
Lauri Kasanen
parent
281d65292a
commit
25995e2490
@@ -49,9 +49,8 @@
|
||||
|
||||
using namespace rdr;
|
||||
|
||||
FdOutStream::FdOutStream(int fd_, bool blocking_, int timeoutms_, size_t bufSize_)
|
||||
: BufferedOutStream(bufSize_),
|
||||
fd(fd_), blocking(blocking_), timeoutms(timeoutms_)
|
||||
FdOutStream::FdOutStream(int fd_, bool blocking_, int timeoutms_)
|
||||
: fd(fd_), blocking(blocking_), timeoutms(timeoutms_)
|
||||
{
|
||||
gettimeofday(&lastWrite, NULL);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user