diff options
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r-- | include/clang/Parse/Action.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index 0be53afda8..1859df43e1 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -288,6 +288,13 @@ public: return 0; } + // Objective-c statements + virtual StmtResult ActOnObjcAtCatchStmt(SourceLocation AtLoc, + SourceLocation RParen, StmtTy *Parm, + StmtTy *Body, StmtTy *CatchList) { + return 0; + } + //===--------------------------------------------------------------------===// // Expression Parsing Callbacks. //===--------------------------------------------------------------------===// |