mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 23:08:05 -05:00
refactor: use new line character instead of std::endl
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user