Buckets: Be able to place fluids through other fluids. (#4331)

This commit is contained in:
Zach DeCook
2019-05-07 20:15:58 +01:00
committed by peterbell10
parent 8b4d37771f
commit b9e7505d7f
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -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);
}