From 65e6c3489a18ec8234383ce6770fe1ccd9c054ab Mon Sep 17 00:00:00 2001 From: Giulio Eulisse Date: Fri, 15 Mar 2019 11:51:08 +0100 Subject: [PATCH] DPL: align FairMQDeviceProxy to FairMQDevice::GetChannel defaults --- Framework/Core/src/FairMQDeviceProxy.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Framework/Core/src/FairMQDeviceProxy.cxx b/Framework/Core/src/FairMQDeviceProxy.cxx index ff01983a9cccc..41dda73f0dc74 100644 --- a/Framework/Core/src/FairMQDeviceProxy.cxx +++ b/Framework/Core/src/FairMQDeviceProxy.cxx @@ -22,7 +22,7 @@ FairMQTransportFactory* FairMQDeviceProxy::getTransport() return mDevice->Transport(); } -FairMQTransportFactory* FairMQDeviceProxy::getTransport(const std::string& channel, int index) +FairMQTransportFactory* FairMQDeviceProxy::getTransport(const std::string& channel, const int index = 0) { return mDevice->GetChannel(channel, index).Transport(); }