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 dbc5c33ddff..170e4e7fad5 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2329,7 +2329,11 @@ enum CXCursorKind { */ CXCursor_OMPTargetSimdDirective = 270, - CXCursor_LastStmt = CXCursor_OMPTargetSimdDirective, + /** \brief OpenMP teams distribute directive. + */ + CXCursor_OMPTeamsDistributeDirective = 271, + + CXCursor_LastStmt = CXCursor_OMPTeamsDistributeDirective, /** * \brief Cursor that represents the translation unit itself. |