diff options
Diffstat (limited to 'libsolidity/LValue.cpp')
-rw-r--r-- | libsolidity/LValue.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libsolidity/LValue.cpp b/libsolidity/LValue.cpp index 4bd38b49..81aaeb4d 100644 --- a/libsolidity/LValue.cpp +++ b/libsolidity/LValue.cpp @@ -31,7 +31,7 @@ using namespace dev; using namespace solidity; -StackVariable::StackVariable(CompilerContext& _compilerContext, Declaration const& _declaration): +StackVariable::StackVariable(CompilerContext& _compilerContext, VariableDeclaration const& _declaration): LValue(_compilerContext, *_declaration.annotation().type), m_baseStackOffset(m_context.baseStackOffsetOfVariable(_declaration)), m_size(m_dataType.sizeOnStack()) @@ -131,7 +131,7 @@ void MemoryItem::setToZero(SourceLocation const&, bool _removeReference) const m_context << eth::Instruction::POP; } -StorageItem::StorageItem(CompilerContext& _compilerContext, Declaration const& _declaration): +StorageItem::StorageItem(CompilerContext& _compilerContext, VariableDeclaration const& _declaration): StorageItem(_compilerContext, *_declaration.annotation().type) { auto const& location = m_context.storageLocationOfVariable(_declaration); |