Merge pull request #1018 from Cleroth/patch-1

Avoid `std::endl` :)
This commit is contained in:
Neil MacIntosh 2017-09-11 11:24:33 -07:00 committed by GitHub
commit b87d21b662

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::exit(severity);
}