refactor: use new line character instead of std::endl

This commit is contained in:
Jan
2024-03-24 20:24:22 +01:00
parent 1b13f1f1b4
commit 132cccb971
49 changed files with 213 additions and 217 deletions

View File

@ -72,12 +72,12 @@ bool ZoneWriter::WriteZone(std::ostream& stream)
}
catch (WritingException& e)
{
std::cout << "Writing fastfile failed: " << e.Message() << std::endl;
std::cout << "Writing fastfile failed: " << e.Message() << "\n";
return false;
}
catch (std::runtime_error& e)
{
std::cout << "Writing fastfile failed: " << e.what() << std::endl;
std::cout << "Writing fastfile failed: " << e.what() << "\n";
return false;
}