aboutsummaryrefslogtreecommitdiffstats
path: root/ExpressionCompiler.cpp
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2014-12-10 21:37:37 +0800
committerchriseth <c@ethdev.com>2014-12-10 21:37:37 +0800
commite8b7d266641175039d40c344449409a60527156e (patch)
treeb6f38b3068fff34931b2c0f4bc331b6aa6bfc930 /ExpressionCompiler.cpp
parentda62403e79308b5bf4be9656e1b55db2f0a71e3b (diff)
downloaddexon-solidity-e8b7d266641175039d40c344449409a60527156e.tar.gz
dexon-solidity-e8b7d266641175039d40c344449409a60527156e.tar.zst
dexon-solidity-e8b7d266641175039d40c344449409a60527156e.zip
Const change.
Diffstat (limited to 'ExpressionCompiler.cpp')
-rw-r--r--ExpressionCompiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ExpressionCompiler.cpp b/ExpressionCompiler.cpp
index 5deb5063..f1086c14 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())