diff options
author | Christian <c@ethdev.com> | 2014-12-06 09:34:05 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-12-08 20:15:43 +0800 |
commit | e0ed942519fbf3a5be106fae2d1906b9c217df95 (patch) | |
tree | 972a0081f985651ce70728341c414549abf9d3bf | |
parent | f636ac6fc4eda7591c1056475c1258af5309a264 (diff) | |
download | dexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.tar dexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.tar.gz dexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.tar.bz2 dexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.tar.lz dexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.tar.xz dexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.tar.zst dexon-solidity-e0ed942519fbf3a5be106fae2d1906b9c217df95.zip |
Removed unused members.
-rw-r--r-- | ExpressionCompiler.h | 4 | ||||
-rw-r--r-- | NameAndTypeResolver.h | 2 |
2 files changed, 0 insertions, 6 deletions
diff --git a/ExpressionCompiler.h b/ExpressionCompiler.h index e93d3280..a02cddfc 100644 --- a/ExpressionCompiler.h +++ b/ExpressionCompiler.h @@ -132,10 +132,6 @@ private: CompilerContext& m_context; LValue m_currentLValue; - /// If a "virtual" function (i.e. a bulit-in function without jump tag) is encountered, the - /// actual function is stored here. @todo prevent assignment or store it with assignment - enum class SpecialFunction { NONE, SEND, SHA3, SUICIDE, ECRECOVER, SHA256, RIPEMD160 }; - SpecialFunction m_currentSpecialFunction; }; diff --git a/NameAndTypeResolver.h b/NameAndTypeResolver.h index 190cf6fa..1ff9febf 100644 --- a/NameAndTypeResolver.h +++ b/NameAndTypeResolver.h @@ -60,8 +60,6 @@ public: Declaration const* getNameFromCurrentScope(ASTString const& _name, bool _recursive = true); private: - /// Throws if @a _struct contains a recursive loop. Note that recursion via mappings is fine. - void checkForRecursion(StructDefinition const& _struct); void reset(); /// Maps nodes declaring a scope to scopes, i.e. ContractDefinition and FunctionDeclaration, |