diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-26 03:29:43 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-26 03:29:43 +0800 |
commit | 8e5f9c59814f7e8b3b390965b17d9b867d36d544 (patch) | |
tree | 640f6c9bd73d74545e7ec5a45380e9137dbb8add /libsolidity/interface | |
parent | 0e2cbc86800597db76e989a79ba858a3a2c3793a (diff) | |
download | dexon-solidity-8e5f9c59814f7e8b3b390965b17d9b867d36d544.tar dexon-solidity-8e5f9c59814f7e8b3b390965b17d9b867d36d544.tar.gz dexon-solidity-8e5f9c59814f7e8b3b390965b17d9b867d36d544.tar.bz2 dexon-solidity-8e5f9c59814f7e8b3b390965b17d9b867d36d544.tar.lz dexon-solidity-8e5f9c59814f7e8b3b390965b17d9b867d36d544.tar.xz dexon-solidity-8e5f9c59814f7e8b3b390965b17d9b867d36d544.tar.zst dexon-solidity-8e5f9c59814f7e8b3b390965b17d9b867d36d544.zip |
Removed unused natspec members of ContractDefinition
Diffstat (limited to 'libsolidity/interface')
-rw-r--r-- | libsolidity/interface/CompilerStack.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libsolidity/interface/CompilerStack.cpp b/libsolidity/interface/CompilerStack.cpp index 7e4518b9..259694da 100644 --- a/libsolidity/interface/CompilerStack.cpp +++ b/libsolidity/interface/CompilerStack.cpp @@ -188,9 +188,6 @@ bool CompilerStack::analyze() if (!resolver.updateDeclaration(*m_globalContext->currentSuper())) return false; if (!resolver.resolveNamesAndTypes(*contract)) return false; - contract->setDevDocumentation(Natspec::devDocumentation(*contract)); - contract->setUserDocumentation(Natspec::userDocumentation(*contract)); - // Note that we now reference contracts by their fully qualified names, and // thus contracts can only conflict if declared in the same source file. This // already causes a double-declaration error elsewhere, so we do not report |