Consistent new line in sourceformatter

This commit is contained in:
Alex Beregszaszi 2017-08-02 11:31:17 +01:00
parent 3aacfc7e35
commit 7553beb6a6

View File

@ -101,6 +101,8 @@ void SourceReferenceFormatter::printExceptionInformation(
_stream << _name;
if (string const* description = boost::get_error_info<errinfo_comment>(_exception))
_stream << ": " << *description << endl;
else
_stream << endl;
printSourceLocation(_stream, location, _scannerFromSourceName);