diff options
Diffstat (limited to '')
-rw-r--r-- | src/Server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Server.cpp b/src/Server.cpp index 207e42569..65ce3301c 100644 --- a/src/Server.cpp +++ b/src/Server.cpp @@ -323,7 +323,7 @@ cTCPLink::cCallbacksPtr cServer::OnConnectionAccepted(const AString & a_RemoteIP NewHandle->SetSelf(NewHandle); cCSLock Lock(m_CSClients); m_Clients.push_back(NewHandle); - return NewHandle; + return std::move(NewHandle); } |