chore: initialize class vars using the order class define, initilizer list, constructor
This commit is contained in:
committed by
Chris Rizzitello
parent
593e53370a
commit
475b895755
@ -60,9 +60,6 @@ SecureSocket::SecureSocket(
|
||||
SecurityLevel securityLevel
|
||||
)
|
||||
: TCPSocket(events, socketMultiplexer, family),
|
||||
m_ssl(nullptr),
|
||||
m_secureReady(false),
|
||||
m_fatal(false),
|
||||
m_securityLevel{securityLevel}
|
||||
{
|
||||
// do nothing
|
||||
@ -72,9 +69,6 @@ SecureSocket::SecureSocket(
|
||||
IEventQueue *events, SocketMultiplexer *socketMultiplexer, ArchSocket socket, SecurityLevel securityLevel
|
||||
)
|
||||
: TCPSocket(events, socketMultiplexer, socket),
|
||||
m_ssl(nullptr),
|
||||
m_secureReady(false),
|
||||
m_fatal(false),
|
||||
m_securityLevel{securityLevel}
|
||||
{
|
||||
// do nothing
|
||||
|
||||
Reference in New Issue
Block a user