diff options
-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, |