diff options
author | chriseth <c@ethdev.com> | 2016-03-07 23:55:53 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-03-12 00:49:32 +0800 |
commit | e5514becb89c945f59fd440696d0bb3122edbe99 (patch) | |
tree | 6358ae151c50802b3cb0c158f7b8b06c53669fd4 /libsolidity/codegen/Compiler.h | |
parent | 60a21c6487743578af6fd4e1540a36a2b80fcac7 (diff) | |
download | dexon-solidity-e5514becb89c945f59fd440696d0bb3122edbe99.tar.gz dexon-solidity-e5514becb89c945f59fd440696d0bb3122edbe99.tar.zst dexon-solidity-e5514becb89c945f59fd440696d0bb3122edbe99.zip |
BREAKING: Implement delegatecall and make default for library calls.
Diffstat (limited to 'libsolidity/codegen/Compiler.h')
-rw-r--r-- | libsolidity/codegen/Compiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/Compiler.h b/libsolidity/codegen/Compiler.h index 9d069f7c..fa33bd30 100644 --- a/libsolidity/codegen/Compiler.h +++ b/libsolidity/codegen/Compiler.h @@ -44,7 +44,7 @@ public: ContractDefinition const& _contract, std::map<ContractDefinition const*, eth::Assembly const*> const& _contracts ); - /// Compiles a contract that uses CALLCODE to call into a pre-deployed version of the given + /// Compiles a contract that uses DELEGATECALL to call into a pre-deployed version of the given /// contract at runtime, but contains the full creation-time code. void compileClone( ContractDefinition const& _contract, |