Skip to content

Commit

Permalink
fix clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaschke committed Jul 15, 2024
1 parent 5ad7432 commit 9985b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/test/test_fallback.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ TEST_F(FallbacksFixturePropagate, filterPropagatesFailures) {
auto add_filtered_fwd = [&fallbacks](double cost, bool accept) {
auto fwd = std::make_unique<ForwardMockup>(PredefinedCosts::constant(cost));
auto filter = std::make_unique<stages::PredicateFilter>("filter", std::move(fwd));
filter->setPredicate([accept](const SolutionBase&, std::string&) { return accept; });
filter->setPredicate([accept](const SolutionBase& /*solution*/, std::string& /*comment*/) { return accept; });
fallbacks->add(std::move(filter));
};
add_filtered_fwd(INF, false); // Propagate fails, filter rejects
Expand Down

0 comments on commit 9985b51

Please sign in to comment.