diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/clang-c/Index.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h index fba2ba8337..c2b1f25f83 100644 --- a/include/clang-c/Index.h +++ b/include/clang-c/Index.h @@ -2010,7 +2010,15 @@ enum CXCursorKind { CXCursor_MacroInstantiation = CXCursor_MacroExpansion, CXCursor_InclusionDirective = 503, CXCursor_FirstPreprocessing = CXCursor_PreprocessingDirective, - CXCursor_LastPreprocessing = CXCursor_InclusionDirective + CXCursor_LastPreprocessing = CXCursor_InclusionDirective, + + /* Extra Declarations */ + /** + * \brief A module import declaration. + */ + CXCursor_ModuleImportDecl = 600, + CXCursor_FirstExtraDecl = CXCursor_ModuleImportDecl, + CXCursor_LastExtraDecl = CXCursor_ModuleImportDecl }; /** |