aboutsummaryrefslogtreecommitdiffstats
path: root/AST.cpp
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-05-04 23:21:59 +0800
committerLiana Husikyan <liana@ethdev.com>2015-05-04 23:21:59 +0800
commit745f5694436fe2c269b5cc3498c7de64be5afcac (patch)
tree369964ca7c964babe0a9aa2cb8b5b61c908735b5 /AST.cpp
parent0a15157155ec61d767ade9a9f910c9ba7364c0e6 (diff)
downloaddexon-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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/AST.cpp b/AST.cpp
index da34f3ab..4e87e68f 100644
--- a/AST.cpp
+++ b/AST.cpp
@@ -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(