From 2920a32ae81539a10af54e275da72111b792568e Mon Sep 17 00:00:00 2001 From: chriseth Date: Fri, 16 Oct 2015 10:01:22 +0200 Subject: Fixed indentation. --- libsolidity/LValue.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libsolidity') 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(*m_dataType), - dynamic_cast(_sourceType)); + dynamic_cast(*m_dataType), + dynamic_cast(_sourceType) + ); if (_move) m_context << eth::Instruction::POP; } -- cgit