Fixed order of initializers for mac build #4697

This commit is contained in:
Adam Potolsky 2015-05-22 16:26:40 -07:00
parent 773530506e
commit 905dbfee90
1 changed files with 4 additions and 4 deletions

View File

@ -52,8 +52,8 @@ SecureSocket::SecureSocket(
SocketMultiplexer* socketMultiplexer) : SocketMultiplexer* socketMultiplexer) :
TCPSocket(events, socketMultiplexer), TCPSocket(events, socketMultiplexer),
m_secureReady(false), m_secureReady(false),
m_maxRetry(MAX_RETRY_COUNT), m_fatal(false),
m_fatal(false) m_maxRetry(MAX_RETRY_COUNT)
{ {
} }
@ -63,8 +63,8 @@ SecureSocket::SecureSocket(
ArchSocket socket) : ArchSocket socket) :
TCPSocket(events, socketMultiplexer, socket), TCPSocket(events, socketMultiplexer, socket),
m_secureReady(false), m_secureReady(false),
m_maxRetry(MAX_RETRY_COUNT), m_fatal(false),
m_fatal(false) m_maxRetry(MAX_RETRY_COUNT)
{ {
} }