Avoid std::endl :)

This commit is contained in:
Cleroth 2017-08-06 11:04:41 +02:00 committed by GitHub
parent 4ffab15e77
commit 43f378c6b3

View File

@ -10687,7 +10687,7 @@ Requires messy cast-and-macro-laden code to get working right.
void error(int severity)
{
std::cerr << std::endl;
std::cerr << '\n' << std::flush;
std::exit(severity);
}