Skip to content
Snippets Groups Projects
Commit 0025fd44 authored by Marco Clemencic's avatar Marco Clemencic
Browse files

Fix compilation with gcc 5.4 (Ubuntu 16.04) (mr !607)

parents c9dc55cf d844c1bd
No related branches found
No related tags found
1 merge request!607Fix compilation with gcc 5.4 (Ubuntu 16.04)
Pipeline #
......@@ -78,7 +78,7 @@ namespace Gaudi
info() << "Converting " << input1 << " from " << inputLocation<0>() << " and " << input2 << " from "
<< inputLocation<1>() << endmsg;
info() << "Storing results into " << outputLocation<0>() << " and " << outputLocation<1>() << endmsg;
return {input1, input2};
return std::tuple<float, float>{input1, input2};
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment