diff options
author | chriseth <c@ethdev.com> | 2015-06-05 23:38:06 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-06-05 23:38:06 +0800 |
commit | 651d755e562dc8b5bc12e42b0b808ff1046f5d43 (patch) | |
tree | 68211a2bcbd3c02ccc31a1d211a2b3ddb9a62b82 /ExpressionCompiler.cpp | |
parent | 5a9d01b815de437a287ac749b528a3dab1f98d9a (diff) | |
download | dexon-solidity-651d755e562dc8b5bc12e42b0b808ff1046f5d43.tar.gz dexon-solidity-651d755e562dc8b5bc12e42b0b808ff1046f5d43.tar.zst dexon-solidity-651d755e562dc8b5bc12e42b0b808ff1046f5d43.zip |
Style.
Diffstat (limited to 'ExpressionCompiler.cpp')
-rw-r--r-- | ExpressionCompiler.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ExpressionCompiler.cpp b/ExpressionCompiler.cpp index 11de7308..bac967d8 100644 --- a/ExpressionCompiler.cpp +++ b/ExpressionCompiler.cpp @@ -1117,10 +1117,11 @@ void ExpressionCompiler::appendExternalFunctionCall( else m_context << eth::Instruction::CALL; - unsigned remainsSize = 1 + // contract address - _functionType.valueSet() + - _functionType.gasSet() + - !_functionType.isBareCall(); + unsigned remainsSize = + 1 + // contract address + _functionType.valueSet() + + _functionType.gasSet() + + !_functionType.isBareCall(); if (returnSuccessCondition) m_context << eth::swapInstruction(remainsSize); |