Skip to content

Commit

Permalink
Update k4FWCore/components/PodioOutput.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell authored Nov 15, 2023
1 parent bdde39a commit 2f2839c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions k4FWCore/components/PodioOutput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ StatusCode PodioOutput::execute() {
const auto& [missing, _] = m_framewriter->checkConsistency(frame.getAvailableCollections(), "events");
error() << "Could not write event, because the following collections are not present: ";
std::string sep = "";
for (const auto& n : missing) {
error() << sep << n;
for (const auto& name : missing) {
error() << sep << name;
sep = ", ";
}
error() << endmsg;
Expand Down

0 comments on commit 2f2839c

Please sign in to comment.