Skip to content

Commit

Permalink
Fix ctor
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrzewic authored and dennisklein committed Oct 31, 2018
1 parent f9658f6 commit 6ac94b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fairmq/nanomsg/FairMQMessageNN.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ FairMQMessageNN::FairMQMessageNN(void* data, const size_t size, fairmq_free_fn*
}
}

FairMQMessageNN::FairMQMessageNN(FairMQUnmanagedRegionPtr& region, void* /*data*/, const size_t size, void* hint, FairMQTransportFactory* factory)
FairMQMessageNN::FairMQMessageNN(FairMQUnmanagedRegionPtr& region, void* data, const size_t size, void* hint, FairMQTransportFactory* factory)
: FairMQMessage{factory}
, fMessage(nullptr)
, fMessage(data)
, fSize(size)
, fHint(reinterpret_cast<size_t>(hint))
, fReceiving(false)
Expand Down

0 comments on commit 6ac94b7

Please sign in to comment.