IpcLogOutputter: Put member initializers in execution order

Member initializers are always run in the order defined in the header.
This commit reorders them in the implementation so that their order
reflects their execution order.
This commit is contained in:
Daniel Seither 2019-11-19 12:03:53 +01:00
parent da3876325d
commit 96e8adbaae
1 changed files with 1 additions and 1 deletions

View File

@ -44,8 +44,8 @@ IpcLogOutputter::IpcLogOutputter(IpcServer& ipcServer, EIpcClientType clientType
m_running(false),
m_notifyCond(ARCH->newCondVar()),
m_notifyMutex(ARCH->newMutex()),
m_bufferThreadId(0),
m_bufferWaiting(false),
m_bufferThreadId(0),
m_bufferMaxSize(kBufferMaxSize),
m_bufferRateWriteLimit(kBufferRateWriteLimit),
m_bufferRateTimeLimit(kBufferRateTimeLimit),