diff options
author | chriseth <chris@ethereum.org> | 2017-08-07 18:24:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-07 18:24:36 +0800 |
commit | 212454a96bc3ec0bdad85723778b88417ff39e39 (patch) | |
tree | 6dabbedb630a0bfcd9022e233a5f083955a5bef0 /libsolidity/ast | |
parent | a372941a442fe1029d212ebf7b097bdea7534fad (diff) | |
parent | bb0eb57c2f2eadb4cc4a88cd347b70fec7813887 (diff) | |
download | dexon-solidity-212454a96bc3ec0bdad85723778b88417ff39e39.tar dexon-solidity-212454a96bc3ec0bdad85723778b88417ff39e39.tar.gz dexon-solidity-212454a96bc3ec0bdad85723778b88417ff39e39.tar.bz2 dexon-solidity-212454a96bc3ec0bdad85723778b88417ff39e39.tar.lz dexon-solidity-212454a96bc3ec0bdad85723778b88417ff39e39.tar.xz dexon-solidity-212454a96bc3ec0bdad85723778b88417ff39e39.tar.zst dexon-solidity-212454a96bc3ec0bdad85723778b88417ff39e39.zip |
Merge pull request #2698 from ethereum/unimplemented-constructor
Constructors must be implemented if declared.
Diffstat (limited to 'libsolidity/ast')
-rw-r--r-- | libsolidity/ast/ASTAnnotations.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libsolidity/ast/ASTAnnotations.h b/libsolidity/ast/ASTAnnotations.h index ecddbe21..f757f03c 100644 --- a/libsolidity/ast/ASTAnnotations.h +++ b/libsolidity/ast/ASTAnnotations.h @@ -79,8 +79,7 @@ struct TypeDeclarationAnnotation: ASTAnnotation struct ContractDefinitionAnnotation: TypeDeclarationAnnotation, DocumentedAnnotation { - /// List of functions without a body. Can also contain functions from base classes, - /// especially constructors. + /// List of functions without a body. Can also contain functions from base classes. std::vector<FunctionDefinition const*> unimplementedFunctions; /// List of all (direct and indirect) base contracts in order from derived to /// base, including the contract itself. |