Fix issues after rebase

This commit is contained in:
Dennis Klein
2019-02-25 15:01:37 +01:00
committed by Dennis Klein
parent a08a34acd5
commit 02e1511667
2 changed files with 17 additions and 3 deletions

View File

@@ -61,7 +61,7 @@ auto TransportFactory::CreateMessage(UnmanagedRegionPtr& region,
auto TransportFactory::CreateSocket(const string& type, const string& name) -> SocketPtr
{
return SocketPtr{new Socket(fContext, type, name, GetId(), this)};
return SocketPtr{new Socket(fContext, type, name, GetId())};
}
auto TransportFactory::CreatePoller(const vector<FairMQChannel>& /*channels*/) const -> PollerPtr