diff options
Diffstat (limited to 'ExpressionCompiler.h')
-rw-r--r-- | ExpressionCompiler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ExpressionCompiler.h b/ExpressionCompiler.h index 28a04f52..a930723c 100644 --- a/ExpressionCompiler.h +++ b/ExpressionCompiler.h @@ -21,11 +21,12 @@ */ #include <libsolidity/ASTVisitor.h> -#include <libsolidity/CompilerUtilities.h> namespace dev { namespace solidity { +class CompilerContext; // forward + /// Compiler for expressions, i.e. converts an AST tree whose root is an Expression into a stream /// of EVM instructions. It needs a compiler context that is the same for the whole compilation /// unit. @@ -68,7 +69,6 @@ private: void moveToLValue(Expression const& _expression); /// Returns the position of @a m_currentLValue in the stack, where 0 is the top of the stack. unsigned stackPositionOfLValue() const; - void adjustStackOffset(eth::Instruction _instruction); Declaration* m_currentLValue; CompilerContext& m_context; |