diff options
-rw-r--r-- | libsolidity/LValue.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libsolidity/LValue.cpp b/libsolidity/LValue.cpp index bc069efd..ac04ebef 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<ArrayType const&>(*m_dataType), - dynamic_cast<ArrayType const&>(_sourceType)); + dynamic_cast<ArrayType const&>(*m_dataType), + dynamic_cast<ArrayType const&>(_sourceType) + ); if (_move) m_context << eth::Instruction::POP; } |