diff --git a/src/transport/SessionHolder.cpp b/src/transport/SessionHolder.cpp index df4987cfbb02f3..290cc1803fafcb 100644 --- a/src/transport/SessionHolder.cpp +++ b/src/transport/SessionHolder.cpp @@ -24,7 +24,7 @@ SessionHolder::~SessionHolder() Release(); } -SessionHolder::SessionHolder(const SessionHolder & that) +SessionHolder::SessionHolder(const SessionHolder & that) : IntrusiveListNodeBase() { mSession = that.mSession; if (mSession.HasValue()) @@ -33,7 +33,7 @@ SessionHolder::SessionHolder(const SessionHolder & that) } } -SessionHolder::SessionHolder(SessionHolder && that) +SessionHolder::SessionHolder(SessionHolder && that) : IntrusiveListNodeBase() { mSession = that.mSession; if (mSession.HasValue())