remove template parameter from Counter

This commit is contained in:
Eric Mertens
2023-12-05 14:51:24 -08:00
parent ab86531dc5
commit 4073ac22fc
2 changed files with 9 additions and 9 deletions

View File

@@ -54,7 +54,7 @@ auto CountWins(std::vector<Card>& cards) -> std::vector<std::size_t>
std::set_intersection(
card.mine .begin(), card.mine .end(),
card.winners.begin(), card.winners.end(),
Counter<std::size_t>{});
Counter{});
result.push_back(counter);
}