diff options
Diffstat (limited to 'src/shared/cplusplus/Parser.h')
-rw-r--r-- | src/shared/cplusplus/Parser.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shared/cplusplus/Parser.h b/src/shared/cplusplus/Parser.h index 2f274e93ab..1dd204d154 100644 --- a/src/shared/cplusplus/Parser.h +++ b/src/shared/cplusplus/Parser.h @@ -264,8 +264,11 @@ public: void match(int kind, unsigned *token); + bool maybeAmbiguousStatement(DeclarationStatementAST *ast) const; bool maybeFunctionCall(SimpleDeclarationAST *simpleDecl) const; bool maybeSimpleExpression(SimpleDeclarationAST *simpleDecl) const; + bool maybeForwardOrClassDeclaration(SpecifierAST *decl_specifier_seq) const; + bool isPointerDeclaration(DeclarationStatementAST *ast) const; private: bool switchTemplateArguments(bool templateArguments); |