diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-05-04 23:21:59 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-05-04 23:21:59 +0800 |
commit | 745f5694436fe2c269b5cc3498c7de64be5afcac (patch) | |
tree | 369964ca7c964babe0a9aa2cb8b5b61c908735b5 /AST.cpp | |
parent | 0a15157155ec61d767ade9a9f910c9ba7364c0e6 (diff) | |
download | dexon-solidity-745f5694436fe2c269b5cc3498c7de64be5afcac.tar.gz dexon-solidity-745f5694436fe2c269b5cc3498c7de64be5afcac.tar.zst dexon-solidity-745f5694436fe2c269b5cc3498c7de64be5afcac.zip |
Update AST.cpp
Diffstat (limited to 'AST.cpp')
-rw-r--r-- | AST.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -147,7 +147,7 @@ void ContractDefinition::checkDuplicateFunctions() const SecondarySourceLocation ssl; auto it = functions[getName()].begin(); ++it; - for(; it != functions[getName()].end(); ++it) + for (; it != functions[getName()].end(); ++it) ssl.append("Another declaration is here:", (*it)->getLocation()); BOOST_THROW_EXCEPTION( |