Fix time output in b_main

This commit is contained in:
2025-01-08 20:45:08 +01:00
parent ae41975fb4
commit 28894004c8

View File

@@ -277,7 +277,7 @@ namespace platform {
} }
if (!quiet) { if (!quiet) {
seed_timer.stop(); seed_timer.stop();
std::cout << "end. [" << seed_timer.getDurationString() << "]" << std::endl; std::cout << "end. [" << seed_timer.getDurationString() << "]";
} }
delete fold; delete fold;
} }