Skip to content

Commit

Permalink
Fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Feb 7, 2025
1 parent a0e722a commit b5faaf3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ struct ExampleFunctionalConsumerMultiple final
for (size_t j = 0; j < links.size(); j++) {
if (links[j].getFrom() != recos[j] || links[j].getTo() != particles[j]) {
std::stringstream error;
error << "Wrong data in links collection, link" << j << " expected " << recos[j].id() << ", " << particles[j].id()
<< " got " << links[j].getFrom().id() << ", " << links[j].getTo().id();
error << "Wrong data in links collection, link" << j << " expected " << recos[j].id() << ", "
<< particles[j].id() << " got " << links[j].getFrom().id() << ", " << links[j].getTo().id();
throw std::runtime_error(error.str());
}
}
Expand Down

0 comments on commit b5faaf3

Please sign in to comment.