diff options
Diffstat (limited to 'clang/include/clang/Parse/Parser.h')
-rw-r--r-- | clang/include/clang/Parse/Parser.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/include/clang/Parse/Parser.h b/clang/include/clang/Parse/Parser.h index 4c51e0508a8..2432f445d9c 100644 --- a/clang/include/clang/Parse/Parser.h +++ b/clang/include/clang/Parse/Parser.h @@ -105,6 +105,7 @@ public: typedef Action::StmtResult StmtResult; typedef Action::BaseResult BaseResult; typedef Action::MemInitResult MemInitResult; + typedef Action::TypeResult TypeResult; typedef Action::OwningExprResult OwningExprResult; typedef Action::OwningStmtResult OwningStmtResult; @@ -912,8 +913,7 @@ private: TPResult TryParseFunctionDeclarator(); TPResult TryParseBracketDeclarator(); - - TypeTy *ParseTypeName(); + TypeResult ParseTypeName(); void ParseBlockId(); // EndLoc, if non-NULL, is filled with the location of the last token of // the attribute list. |