From e8b7d266641175039d40c344449409a60527156e Mon Sep 17 00:00:00 2001 From: chriseth Date: Wed, 10 Dec 2014 14:37:37 +0100 Subject: [PATCH] Const change. --- ExpressionCompiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ExpressionCompiler.cpp b/ExpressionCompiler.cpp index 5deb50639..f1086c143 100644 --- a/ExpressionCompiler.cpp +++ b/ExpressionCompiler.cpp @@ -565,7 +565,7 @@ void ExpressionCompiler::appendHighBitsCleanup(IntegerType const& _typeOnStack) m_context << ((u256(1) << _typeOnStack.getNumBits()) - 1) << eth::Instruction::AND; } -ExpressionCompiler::LValue::LValue(CompilerContext& _compilerContext, LValueType _type, const Type& _dataType, +ExpressionCompiler::LValue::LValue(CompilerContext& _compilerContext, LValueType _type, Type const& _dataType, unsigned _baseStackOffset): m_context(&_compilerContext), m_type(_type), m_baseStackOffset(_baseStackOffset), m_stackSize(_dataType.getSizeOnStack())