aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-05-17 20:57:21 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-07-25 08:18:09 +0800
commita5a61a0b7762bf5acdd01a4e6943d927b08f92ab (patch)
tree391e246bac959c9a74ce1c1b7f03042f9bbe41c2 /test
parentae0959ae125ac2ae7084041a87c0736a8e7df6c6 (diff)
downloaddexon-solidity-a5a61a0b7762bf5acdd01a4e6943d927b08f92ab.tar.gz
dexon-solidity-a5a61a0b7762bf5acdd01a4e6943d927b08f92ab.tar.zst
dexon-solidity-a5a61a0b7762bf5acdd01a4e6943d927b08f92ab.zip
More consistent catch statements
Also take const& in all cases.
Diffstat (limited to 'test')
-rw-r--r--test/tools/isoltest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tools/isoltest.cpp b/test/tools/isoltest.cpp
index ed4f148e..bd4b0db9 100644
--- a/test/tools/isoltest.cpp
+++ b/test/tools/isoltest.cpp
@@ -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;