Fixed indentation.

This commit is contained in:
chriseth 2015-10-16 10:01:22 +02:00
parent 1d4219d43d
commit 2920a32ae8

View File

@ -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;
}