More consistent catch statements

Also take const& in all cases.
This commit is contained in:
Alex Beregszaszi
2018-07-25 01:18:09 +01:00
parent ae0959ae12
commit a5a61a0b77
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -119,7 +119,7 @@ TestTool::Result TestTool::process()
"Exception during syntax test: " << _e.what() << endl;
return Result::Exception;
}
catch(...)
catch (...)
{
FormattedScope(cout, m_formatted, {BOLD, RED}) <<
"Unknown exception during syntax test." << endl;