diff options
author | Daniel Kirchner <daniel@ekpyron.org> | 2018-04-05 22:25:20 +0800 |
---|---|---|
committer | Daniel Kirchner <daniel@ekpyron.org> | 2018-04-09 21:26:08 +0800 |
commit | b918a105a40aa90fe9b89eecbcdfc7ac2937c141 (patch) | |
tree | a4dc43f3387888817455d03633b02850d86a9832 /libsolidity/codegen/ContractCompiler.h | |
parent | b8fdb666e235bb6b19f11dba7740227026111598 (diff) | |
download | dexon-solidity-b918a105a40aa90fe9b89eecbcdfc7ac2937c141.tar.gz dexon-solidity-b918a105a40aa90fe9b89eecbcdfc7ac2937c141.tar.zst dexon-solidity-b918a105a40aa90fe9b89eecbcdfc7ac2937c141.zip |
Move constructor argument override check to TypeChecker and reuse annotations in ContractCompiler.
Diffstat (limited to 'libsolidity/codegen/ContractCompiler.h')
-rw-r--r-- | libsolidity/codegen/ContractCompiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/ContractCompiler.h b/libsolidity/codegen/ContractCompiler.h index e04a56fb..02a3452f 100644 --- a/libsolidity/codegen/ContractCompiler.h +++ b/libsolidity/codegen/ContractCompiler.h @@ -135,7 +135,7 @@ private: FunctionDefinition const* m_currentFunction = nullptr; unsigned m_stackCleanupForReturn = 0; ///< this number of stack elements need to be removed before jump to m_returnTag // arguments for base constructors, filled in derived-to-base order - std::map<FunctionDefinition const*, std::vector<ASTPointer<Expression>> const*> m_baseArguments; + std::map<FunctionDefinition const*, ASTNode const*> const* m_baseArguments; }; } |