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 5756f9fda42..0fb9a055d62 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2354,7 +2354,11 @@ enum CXCursorKind { */ CXCursor_OMPTeamsDistributeParallelForDirective = 274, - CXCursor_LastStmt = CXCursor_OMPTeamsDistributeParallelForDirective, + /** \brief OpenMP target teams directive. + */ + CXCursor_OMPTargetTeamsDirective = 275, + + CXCursor_LastStmt = CXCursor_OMPTargetTeamsDirective, /** * \brief Cursor that represents the translation unit itself. |