diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-07-25 17:31:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-25 17:31:57 +0800 |
commit | ff8e930054eaa3c7ae5f0b8160fcba15efbe264a (patch) | |
tree | 391e246bac959c9a74ce1c1b7f03042f9bbe41c2 /test | |
parent | ae0959ae125ac2ae7084041a87c0736a8e7df6c6 (diff) | |
parent | a5a61a0b7762bf5acdd01a4e6943d927b08f92ab (diff) | |
download | dexon-solidity-ff8e930054eaa3c7ae5f0b8160fcba15efbe264a.tar dexon-solidity-ff8e930054eaa3c7ae5f0b8160fcba15efbe264a.tar.gz dexon-solidity-ff8e930054eaa3c7ae5f0b8160fcba15efbe264a.tar.bz2 dexon-solidity-ff8e930054eaa3c7ae5f0b8160fcba15efbe264a.tar.lz dexon-solidity-ff8e930054eaa3c7ae5f0b8160fcba15efbe264a.tar.xz dexon-solidity-ff8e930054eaa3c7ae5f0b8160fcba15efbe264a.tar.zst dexon-solidity-ff8e930054eaa3c7ae5f0b8160fcba15efbe264a.zip |
Merge pull request #4570 from ethereum/cleanup-catch-statements
More consistent catch statements
Diffstat (limited to 'test')
-rw-r--r-- | test/tools/isoltest.cpp | 2 |
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; |