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 89612b9c93a..5e57a12e2a0 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2305,7 +2305,11 @@ enum CXCursorKind { */ CXCursor_OMPTargetUpdateDirective = 265, - CXCursor_LastStmt = CXCursor_OMPTargetUpdateDirective, + /** \brief OpenMP distribute parallel for directive. + */ + CXCursor_OMPDistributeParallelForDirective = 266, + + CXCursor_LastStmt = CXCursor_OMPDistributeParallelForDirective, /** * \brief Cursor that represents the translation unit itself. |