BAN: Restructure sort functions and namespaces

This commit is contained in:
2023-12-08 18:58:47 +02:00
parent b523ccb893
commit 2b927b9729
3 changed files with 26 additions and 26 deletions

View File

@@ -116,7 +116,7 @@ i64 puzzle(FILE* fp, bool joker)
));
}
BAN::sort(hands.begin(), hands.end(),
BAN::sort::sort(hands.begin(), hands.end(),
[joker] (const Hand& lhs, const Hand& rhs) {
return hand_score(lhs, joker) < hand_score(rhs, joker);
}