diff options
Diffstat (limited to 'clang/include/clang-c/Index.h')
-rw-r--r-- | clang/include/clang-c/Index.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 5cbcc3b7f58..4917ba5fb51 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2559,8 +2559,11 @@ enum CXCursorKind { */ CXCursor_OMPMasterTaskLoopDirective = 281, + /** OpenMP parallel master taskloop directive. + */ + CXCursor_OMPParallelMasterTaskLoopDirective = 282, - CXCursor_LastStmt = CXCursor_OMPMasterTaskLoopDirective, + CXCursor_LastStmt = CXCursor_OMPParallelMasterTaskLoopDirective, /** * Cursor that represents the translation unit itself. |