Merge pull request #1018 from Cleroth/patch-1

Avoid `std::endl` :)
pull/1015/merge
Neil MacIntosh 8 years ago committed by GitHub
commit b87d21b662

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

Loading…
Cancel
Save