diff options
author | Christian <c@ethdev.com> | 2015-01-07 23:46:15 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2015-01-07 23:46:53 +0800 |
commit | 9866caa625d467f5460e272eee5d69761d8d830b (patch) | |
tree | 6ea9c1ecd9bd03c2b7e8a241dc73230a0d5100b8 /CompilerStack.h | |
parent | a2375542e6d369da4669ba2e29db08b89a19b17f (diff) | |
download | dexon-solidity-9866caa625d467f5460e272eee5d69761d8d830b.tar.gz dexon-solidity-9866caa625d467f5460e272eee5d69761d8d830b.tar.zst dexon-solidity-9866caa625d467f5460e272eee5d69761d8d830b.zip |
Fix some warnings about uninitialized members.
Diffstat (limited to 'CompilerStack.h')
-rw-r--r-- | CompilerStack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CompilerStack.h b/CompilerStack.h index 358c8fb7..e7143b7b 100644 --- a/CompilerStack.h +++ b/CompilerStack.h @@ -113,7 +113,7 @@ private: struct Contract { - ContractDefinition const* contract; + ContractDefinition const* contract = nullptr; std::shared_ptr<Compiler> compiler; bytes bytecode; std::shared_ptr<InterfaceHandler> interfaceHandler; |