Browse Source

Style.

cl-refactor
chriseth 10 years ago
parent
commit
089c9477b4
  1. 9
      libsolidity/ExpressionCompiler.cpp

9
libsolidity/ExpressionCompiler.cpp

@ -1117,10 +1117,11 @@ void ExpressionCompiler::appendExternalFunctionCall(
else else
m_context << eth::Instruction::CALL; m_context << eth::Instruction::CALL;
unsigned remainsSize = 1 + // contract address unsigned remainsSize =
_functionType.valueSet() + 1 + // contract address
_functionType.gasSet() + _functionType.valueSet() +
!_functionType.isBareCall(); _functionType.gasSet() +
!_functionType.isBareCall();
if (returnSuccessCondition) if (returnSuccessCondition)
m_context << eth::swapInstruction(remainsSize); m_context << eth::swapInstruction(remainsSize);

Loading…
Cancel
Save