diff options
Diffstat (limited to 'clang/include/clang/Parse/Parser.h')
| -rw-r--r-- | clang/include/clang/Parse/Parser.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/clang/include/clang/Parse/Parser.h b/clang/include/clang/Parse/Parser.h index fdb2327d4b3..084996d61c1 100644 --- a/clang/include/clang/Parse/Parser.h +++ b/clang/include/clang/Parse/Parser.h @@ -682,7 +682,9 @@ private: // C++ 15: C++ Throw Expression OwningExprResult ParseThrowExpression(); // EndLoc is filled with the location of the last token of the specification. - bool ParseExceptionSpecification(SourceLocation &EndLoc); + bool ParseExceptionSpecification(SourceLocation &EndLoc, + std::vector<TypeTy*> &Exceptions, + bool &hasAnyExceptionSpec); //===--------------------------------------------------------------------===// // C++ 2.13.5: C++ Boolean Literals |

