diff options
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r-- | clang/include/clang-c/Index.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 7f3f2482667..c514fb03b51 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2167,9 +2167,13 @@ enum CXCursorKind { */ CXCursor_OMPTaskDirective = 240, + /** \brief OpenMP master directive. + */ + CXCursor_OMPMasterDirective = 241, + /** \brief Windows Structured Exception Handling's leave statement. */ - CXCursor_SEHLeaveStmt = 241, + CXCursor_SEHLeaveStmt = 242, CXCursor_LastStmt = CXCursor_SEHLeaveStmt, |