diff options
author | chriseth <chris@ethereum.org> | 2017-08-29 21:24:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-29 21:24:51 +0800 |
commit | 93b1cc97022aa01e7daa9816bcc23108bbe008b5 (patch) | |
tree | 8ec4eabcaaee6728ac3665c94a4c2f29390bb4aa /libsolidity/codegen | |
parent | e77e5941202df8363344b6c21a4ba813423ed889 (diff) | |
parent | 79e84a8fa43b55838100f9c24dec04b1e721c65c (diff) | |
download | dexon-solidity-93b1cc97022aa01e7daa9816bcc23108bbe008b5.tar.gz dexon-solidity-93b1cc97022aa01e7daa9816bcc23108bbe008b5.tar.zst dexon-solidity-93b1cc97022aa01e7daa9816bcc23108bbe008b5.zip |
Merge pull request #2833 from ethereum/statemutability-builtins
Mark all built in functions with appropriate statemutability
Diffstat (limited to 'libsolidity/codegen')
-rw-r--r-- | libsolidity/codegen/ExpressionCompiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/ExpressionCompiler.cpp b/libsolidity/codegen/ExpressionCompiler.cpp index 45c2170c..5c9b743a 100644 --- a/libsolidity/codegen/ExpressionCompiler.cpp +++ b/libsolidity/codegen/ExpressionCompiler.cpp @@ -644,8 +644,8 @@ bool ExpressionCompiler::visit(FunctionCall const& _functionCall) strings(), FunctionType::Kind::BareCall, false, - nullptr, StateMutability::NonPayable, + nullptr, true, true ), |