Flush stdout when printing generation info

This commit is contained in:
Sterling Harper 2019-02-15 10:29:29 -05:00
parent 9352b15d59
commit 290d7876d2

View file

@ -423,7 +423,7 @@ void print_batch_keff()
std::cout << " " << std::setw(8) << simulation::keff << " +/-"
<< std::setw(8) << simulation::keff_std;
}
std::cout << '\n';
std::cout << std::endl;
// Restore state of cout
std::cout.flags(f);