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 3f95f1d..63d266d 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -2202,7 +2202,11 @@ enum CXCursorKind { */ CXCursor_OpenACCSetConstruct = 330, - CXCursor_LastStmt = CXCursor_OpenACCSetConstruct, + /** OpenACC update Construct. + */ + CXCursor_OpenACCUpdateConstruct = 331, + + CXCursor_LastStmt = CXCursor_OpenACCUpdateConstruct, /** * Cursor that represents the translation unit itself. |