Skip to content

Commit

Permalink
IpcLogOutputter: Put member initializers in execution order
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tiwoc committed Nov 19, 2019
1 parent da38763 commit 96e8adb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/ipc/IpcLogOutputter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 96e8adb

Please sign in to comment.