1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 01:05:38 +01:00

changed to push_back according to request

This commit is contained in:
ferben 2020-03-11 09:05:01 +00:00
parent b32b1ca642
commit 0fa93383b7

View File

@ -102,7 +102,7 @@ std::vector<std::string> TPerambulator<FImpl>::getOutput(void)
if( !UnsmearedSinkFileName.empty() )
{
objName.append( UnsmearedSink );
output.emplace_back( objName );
output.push_back( objName );
}
return output;
}