Remove debug statements.

This commit is contained in:
tastytea 2021-05-26 18:25:32 +02:00
parent fe02b155f5
commit 7dcf6d599c
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 0 additions and 3 deletions

View File

@ -157,11 +157,9 @@ int main(int argc, char *argv[])
if (int ret{}; (ret = it->get()) != EXIT_SUCCESS) if (int ret{}; (ret = it->get()) != EXIT_SUCCESS)
{ {
cerr << "ERROR\n";
return_code = ret; return_code = ret;
} }
futurepool.erase(it); futurepool.erase(it);
cerr << "ERASED\n";
} }
return EXIT_SUCCESS; return EXIT_SUCCESS;
@ -182,7 +180,6 @@ int main(int argc, char *argv[])
} }
futurepool.emplace_back( futurepool.emplace_back(
std::async(std::launch::async, search_file, filepath)); std::async(std::launch::async, search_file, filepath));
cerr << "EMPLACED\n";
} }
futures_cleanup(true); futures_cleanup(true);