Make sure output() doesn't always write to stderr

This commit is contained in:
Paul Romano 2019-02-14 06:39:48 -06:00
parent 7e1abc439b
commit 24c84e394c
2 changed files with 4 additions and 4 deletions

View file

@ -65,7 +65,7 @@ void title()
" ############### %%%%%%%%%%%%%%%%\n" <<
" ############ %%%%%%%%%%%%%%%\n" <<
" ######## %%%%%%%%%%%%%%\n" <<
" %%%%%%%%%%%\n";
" %%%%%%%%%%%\n\n";
// Write version information
std::cout <<
@ -88,7 +88,7 @@ void title()
#ifdef _OPENMP
// Write number of OpenMP threads
std::cout << " OpenMC Threads | " << omp_get_max_threads() << '\n';
std::cout << " OpenMP Threads | " << omp_get_max_threads() << '\n';
#endif
std::cout << '\n';
}