From dda56e4b4a9c274c5c4011981bd291523e75d747 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Fri, 15 Apr 2011 14:24:37 +0000 Subject: Support for C++11 (non-template) alias declarations. llvm-svn: 129567 --- clang/include/clang-c/Index.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'clang/include/clang-c') diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 4d93afd105d..715a360c4be 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -1101,10 +1101,12 @@ enum CXCursorKind { CXCursor_NamespaceAlias = 33, /** \brief A C++ using directive. */ CXCursor_UsingDirective = 34, - /** \brief A using declaration. */ + /** \brief A C++ using declaration. */ CXCursor_UsingDeclaration = 35, + /** \brief A C++ alias declaration */ + CXCursor_TypeAliasDecl = 36, CXCursor_FirstDecl = CXCursor_UnexposedDecl, - CXCursor_LastDecl = CXCursor_UsingDeclaration, + CXCursor_LastDecl = CXCursor_TypeAliasDecl, /* References */ CXCursor_FirstRef = 40, /* Decl references */ -- cgit v1.2.3