diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-03-02 21:21:12 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-03-02 21:28:13 +0800 |
commit | 9b6b2759b4c5ff622878eda7f136b3541cb90b52 (patch) | |
tree | adca1fc5d1831041c35f4f261f872f04594e0424 /CompilerContext.cpp | |
parent | e9238e15b4058bf9b84c3c9c59720f255843de75 (diff) | |
download | dexon-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.cpp | 2 |
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(); |