diff options
author | liana <liana@ethdev.com> | 2015-01-16 20:07:16 +0800 |
---|---|---|
committer | liana <liana@ethdev.com> | 2015-01-16 20:07:16 +0800 |
commit | a0ec9c66801f27ce5436c35c120f86215ca7977f (patch) | |
tree | 4d30cef4a730ea9bf516449ba3e45d3ad920a1d9 | |
parent | 1142b99a643a676b9adb7ada0b19aa1c5d8f8401 (diff) | |
download | dexon-solidity-a0ec9c66801f27ce5436c35c120f86215ca7977f.tar.gz dexon-solidity-a0ec9c66801f27ce5436c35c120f86215ca7977f.tar.zst dexon-solidity-a0ec9c66801f27ce5436c35c120f86215ca7977f.zip |
removed spaces
-rw-r--r-- | ExpressionCompiler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ExpressionCompiler.cpp b/ExpressionCompiler.cpp index 4eed68ea..775d59a3 100644 --- a/ExpressionCompiler.cpp +++ b/ExpressionCompiler.cpp @@ -812,8 +812,8 @@ void ExpressionCompiler::LValue::setToZero(Expression const& _expression) const << errinfo_comment("Stack too deep.")); solAssert(stackDiff <= m_size, ""); for (unsigned i = 0; i < m_size; ++i) - *m_context << u256(0) << eth::swapInstruction(stackDiff + (m_size - i) ) << eth::Instruction::POP; - + *m_context << u256(0) << eth::swapInstruction(stackDiff + (m_size - i) ) + << eth::Instruction::POP; break; } case LValue::STORAGE: |