aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen/Compiler.h
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-08-07 19:00:34 +0800
committerGitHub <noreply@github.com>2018-08-07 19:00:34 +0800
commitc6278fbae1e1dac33ebfad7e8d42e071c9e78914 (patch)
treed6772c27c34253ff8fc249eb1fc18f1ec2b49a4d /libsolidity/codegen/Compiler.h
parentd0bfe4b2254a9fa30429215fba8cd7e47db7a3b0 (diff)
parent71e26f6adb7d6b28400a6607570bb1e17da24feb (diff)
downloaddexon-solidity-c6278fbae1e1dac33ebfad7e8d42e071c9e78914.tar
dexon-solidity-c6278fbae1e1dac33ebfad7e8d42e071c9e78914.tar.gz
dexon-solidity-c6278fbae1e1dac33ebfad7e8d42e071c9e78914.tar.bz2
dexon-solidity-c6278fbae1e1dac33ebfad7e8d42e071c9e78914.tar.lz
dexon-solidity-c6278fbae1e1dac33ebfad7e8d42e071c9e78914.tar.xz
dexon-solidity-c6278fbae1e1dac33ebfad7e8d42e071c9e78914.tar.zst
dexon-solidity-c6278fbae1e1dac33ebfad7e8d42e071c9e78914.zip
Merge pull request #4701 from ethereum/removeClone
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).