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 4819293c734..1b9e993f338 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2155,9 +2155,13 @@ enum CXCursorKind { */ CXCursor_OMPSingleDirective = 237, + /** \brief OpenMP parallel for directive. + */ + CXCursor_OMPParallelForDirective = 238, + /** \brief Windows Structured Exception Handling's leave statement. */ - CXCursor_SEHLeaveStmt = 238, + CXCursor_SEHLeaveStmt = 239, CXCursor_LastStmt = CXCursor_SEHLeaveStmt, |