diff options
Diffstat (limited to 'clang/include/clang-c/Index.h')
-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 0fb9a055d62..e6b1cd7d99b 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2358,7 +2358,11 @@ enum CXCursorKind { */ CXCursor_OMPTargetTeamsDirective = 275, - CXCursor_LastStmt = CXCursor_OMPTargetTeamsDirective, + /** \brief OpenMP target teams distribute directive. + */ + CXCursor_OMPTargetTeamsDistributeDirective = 276, + + CXCursor_LastStmt = CXCursor_OMPTargetTeamsDistributeDirective, /** * \brief Cursor that represents the translation unit itself. |