diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-05-28 20:48:37 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-06-01 19:06:12 +0800 |
commit | ccb194fd39781c7b1083615eb21c9d9cc80d4d54 (patch) | |
tree | cdb33017bd3cb7645ba71a24f628967be52a8a85 /ExpressionCompiler.h | |
parent | e72a014cf44d086f3cb12bf1f4e2cfa02d781d38 (diff) | |
download | dexon-solidity-ccb194fd39781c7b1083615eb21c9d9cc80d4d54.tar.gz dexon-solidity-ccb194fd39781c7b1083615eb21c9d9cc80d4d54.tar.zst dexon-solidity-ccb194fd39781c7b1083615eb21c9d9cc80d4d54.zip |
removed exception when function is not found
Diffstat (limited to 'ExpressionCompiler.h')
-rw-r--r-- | ExpressionCompiler.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ExpressionCompiler.h b/ExpressionCompiler.h index 6f47762b..174e16d8 100644 --- a/ExpressionCompiler.h +++ b/ExpressionCompiler.h @@ -98,11 +98,7 @@ private: void appendHighBitsCleanup(IntegerType const& _typeOnStack); /// Appends code to call a function of the given type with the given arguments. - void appendExternalFunctionCall( - FunctionType const& _functionType, - std::vector<ASTPointer<Expression const>> const& _arguments, - bool isSend = false - ); + void appendExternalFunctionCall(FunctionType const& _functionType, std::vector<ASTPointer<Expression const>> const& _arguments); /// Appends code that evaluates the given arguments and moves the result to memory encoded as /// specified by the ABI. The memory offset is expected to be on the stack and is updated by /// this call. If @a _padToWordBoundaries is set to false, all values are concatenated without |