Merge pull request #1168 from smharper/stdout_flush

Flush stdout when printing generation info
This commit is contained in:
Paul Romano 2019-02-19 08:59:46 -06:00 committed by GitHub
commit 6cd32e1c4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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);