diff options
author | Christian <c@ethdev.com> | 2015-01-31 04:43:19 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2015-01-31 04:49:01 +0800 |
commit | ab9dec320a034a0b9aacd5f8944b48de609d2fe8 (patch) | |
tree | e84f9abb22905c18f3d53744cae06c8810bfbfc1 /Parser.h | |
parent | 06e846b45cedea57c55c7e8da0b77b76bab3bc80 (diff) | |
download | dexon-solidity-ab9dec320a034a0b9aacd5f8944b48de609d2fe8.tar.gz dexon-solidity-ab9dec320a034a0b9aacd5f8944b48de609d2fe8.tar.zst dexon-solidity-ab9dec320a034a0b9aacd5f8944b48de609d2fe8.zip |
Fix: No parameters for event.
Diffstat (limited to 'Parser.h')
-rw-r--r-- | Parser.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -97,6 +97,9 @@ private: ASTPointer<ASTString> getLiteralAndAdvance(); ///@} + /// Creates an empty ParameterList at the current location (used if parameters can be omitted). + ASTPointer<ParameterList> createEmptyParameterList(); + /// Creates a @ref ParserError exception and annotates it with the current position and the /// given @a _description. ParserError createParserError(std::string const& _description) const; |