chore: initialize class vars using the order class define, initilizer list, constructor

This commit is contained in:
sithlord48
2025-05-22 18:22:20 -04:00
committed by Chris Rizzitello
parent 593e53370a
commit 475b895755
83 changed files with 249 additions and 465 deletions

View File

@ -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