Skip to content

Commit

Permalink
Fix ambiguous method call in BaseMQFileSink
Browse files Browse the repository at this point in the history
  • Loading branch information
rbx authored and dennisklein committed Sep 24, 2018
1 parent 4847b35 commit 610d161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/MQ/devices/BaseMQFileSink.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class BaseMQFileSink : public FairMQDevice, public InputPolicy, public OutputPol
std::unique_ptr<FairMQMessage> msg(NewMessage());
if (Receive(msg, "data-in") > 0)
{
Deserialize<typename InputPolicy::DeserializerType>(*msg, InputPolicy::fInput); // get data from message.
FairMQDevice::Deserialize<typename InputPolicy::DeserializerType>(*msg, InputPolicy::fInput); // get data from message.
OutputPolicy::Serialize(InputPolicy::fInput); // put data into output.
receivedMsg++;
}
Expand Down

0 comments on commit 610d161

Please sign in to comment.