aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen/Compiler.h
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-08-07 00:32:18 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-08-07 18:10:50 +0800
commit71e26f6adb7d6b28400a6607570bb1e17da24feb (patch)
tree81bdd11e1209e1c00a6aa8c4b9e8ca5ced0d466e /libsolidity/codegen/Compiler.h
parentd33e5683f51dc9d85b4493abbf6f03f6ab7b8ff2 (diff)
downloaddexon-solidity-71e26f6adb7d6b28400a6607570bb1e17da24feb.tar.gz
dexon-solidity-71e26f6adb7d6b28400a6607570bb1e17da24feb.tar.zst
dexon-solidity-71e26f6adb7d6b28400a6607570bb1e17da24feb.zip
Remove clone feature.
Diffstat (limited to 'libsolidity/codegen/Compiler.h')
-rw-r--r--libsolidity/codegen/Compiler.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/libsolidity/codegen/Compiler.h b/libsolidity/codegen/Compiler.h
index f6865d75..4028ae63 100644
--- a/libsolidity/codegen/Compiler.h
+++ b/libsolidity/codegen/Compiler.h
@@ -50,12 +50,6 @@ public:
std::map<ContractDefinition const*, eth::Assembly const*> const& _contracts,
bytes const& _metadata
);
- /// 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,
- std::map<ContractDefinition const*, eth::Assembly const*> const& _contracts
- );
/// @returns Entire assembly.
eth::Assembly const& assembly() const { return m_context.assembly(); }
/// @returns The entire assembled object (with constructor).