mirror of
https://github.com/debauchee/barrier.git
synced 2026-05-05 21:02:39 +08:00
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:
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user