aboutsummaryrefslogtreecommitdiffstats
path: root/CompilerContext.cpp
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-03-02 21:21:12 +0800
committerLiana Husikyan <liana@ethdev.com>2015-03-02 21:28:13 +0800
commit9b6b2759b4c5ff622878eda7f136b3541cb90b52 (patch)
treeadca1fc5d1831041c35f4f261f872f04594e0424 /CompilerContext.cpp
parente9238e15b4058bf9b84c3c9c59720f255843de75 (diff)
downloaddexon-solidity-9b6b2759b4c5ff622878eda7f136b3541cb90b52.tar.gz
dexon-solidity-9b6b2759b4c5ff622878eda7f136b3541cb90b52.tar.zst
dexon-solidity-9b6b2759b4c5ff622878eda7f136b3541cb90b52.zip
removed unused member
added some comments for ModifierInvocation::checkTypeRequirements cleanup
Diffstat (limited to 'CompilerContext.cpp')
-rw-r--r--CompilerContext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/CompilerContext.cpp b/CompilerContext.cpp
index 7184dc37..61c25052 100644
--- a/CompilerContext.cpp
+++ b/CompilerContext.cpp
@@ -126,7 +126,7 @@ eth::AssemblyItem CompilerContext::getSuperFunctionEntryLabel(string const& _nam
FunctionDefinition const* CompilerContext::getNextConstructor(ContractDefinition const& _contract) const
{
vector<ContractDefinition const*>::const_iterator it = getSuperContract(_contract);
- for (; it != m_inheritanceHierarchy.end(); it = getSuperContract(**it))
+ for (; it != m_inheritanceHierarchy.end(); ++it)
if ((*it)->getConstructor())
return (*it)->getConstructor();