Remove toy code that got commited by mistake

master
Tomasz Golinski 2021-01-03 04:42:52 +01:00
rodzic 24acae7625
commit be8e2b783e
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -359,7 +359,7 @@ int main(int argc, char** argv) {
std::sort(caches_by_rating.begin(), caches_by_rating.end(), [&](const Cache* a, const Cache* b) { return a->rating > b->rating; });
} else {
for (auto& i : cc) {
if (i.type != "Moving" && i.type != "Own" && (!exclude_quiz || i.type != "Quiz") && i.rating >= 4.9) {
if (i.type != "Moving" && i.type != "Own" && (!exclude_quiz || i.type != "Quiz")) {
fcc.push_back(&i);
poland.locate(i);
}