diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-05-04 23:28:28 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-05-04 23:28:28 +0800 |
commit | e2d9ef69456501439f2237bacacc19f833eb6fb7 (patch) | |
tree | 45a175d38fbdfea99676f0ec0d7ec1a237bd3229 | |
parent | 745f5694436fe2c269b5cc3498c7de64be5afcac (diff) | |
download | dexon-solidity-e2d9ef69456501439f2237bacacc19f833eb6fb7.tar.gz dexon-solidity-e2d9ef69456501439f2237bacacc19f833eb6fb7.tar.zst dexon-solidity-e2d9ef69456501439f2237bacacc19f833eb6fb7.zip |
Update AST.cpp
-rw-r--r-- | AST.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -95,10 +95,9 @@ void ContractDefinition::checkTypeRequirements() { FixedHash<4> const& hash = it.first; if (hashes.count(hash)) - BOOST_THROW_EXCEPTION( - createTypeError( - string("Function signature hash collision for ") + it.second->externalSignature()) - ); + BOOST_THROW_EXCEPTION(createTypeError( + string("Function signature hash collision for ") + it.second->externalSignature() + )); hashes.insert(hash); } } |