From 96e8adbaae126263cd170186411e857b73d851e2 Mon Sep 17 00:00:00 2001 From: Daniel Seither Date: Tue, 19 Nov 2019 12:03:53 +0100 Subject: [PATCH] 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. --- src/lib/ipc/IpcLogOutputter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ipc/IpcLogOutputter.cpp b/src/lib/ipc/IpcLogOutputter.cpp index b62c76a0..8f649d2f 100644 --- a/src/lib/ipc/IpcLogOutputter.cpp +++ b/src/lib/ipc/IpcLogOutputter.cpp @@ -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),