Cleared initialization order warning with -Wall

pull/2/head
Jeffrey Walton 2015-06-08 04:08:17 -04:00
parent d2686acc10
commit ed05fef1cf
1 changed files with 2 additions and 2 deletions

View File

@ -227,8 +227,8 @@ bool NonblockingSink::IsolatedFlush(bool hardFlush, bool blocking)
NetworkSource::NetworkSource(BufferedTransformation *attachment)
: NonblockingSource(attachment), m_buf(1024*16)
, m_waitingForResult(false), m_dataBegin(0), m_dataEnd(0)
, m_outputBlocked(false)
, m_dataBegin(0), m_dataEnd(0)
, m_waitingForResult(false), m_outputBlocked(false)
{
}