From 7d8881e1736372e21d65d7d60aae6d64f0b34889 Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Wed, 6 Apr 2022 13:27:07 -0400 Subject: [PATCH] Add back session holder init: it looks like -Wextra is more strict on what calls should be made on base classes --- src/transport/SessionHolder.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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())