diff --git a/libsolidity/LValue.cpp b/libsolidity/LValue.cpp index bc069efd5..ac04ebefb 100644 --- a/libsolidity/LValue.cpp +++ b/libsolidity/LValue.cpp @@ -245,8 +245,9 @@ void StorageItem::storeValue(Type const& _sourceType, SourceLocation const& _loc { m_context << eth::Instruction::POP; // remove byte offset ArrayUtils(m_context).copyArrayToStorage( - dynamic_cast(*m_dataType), - dynamic_cast(_sourceType)); + dynamic_cast(*m_dataType), + dynamic_cast(_sourceType) + ); if (_move) m_context << eth::Instruction::POP; }