summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorSergey Kalinichev <kalinichev.so.0@gmail.com>2015-11-15 13:48:32 +0000
committerSergey Kalinichev <kalinichev.so.0@gmail.com>2015-11-15 13:48:32 +0000
commit2c0b7d1511d5ecd0c24d52afbaeb30de651860cf (patch)
tree53c10642e94c58a36e943308c35b24f761343d25 /include/clang-c
parent93622ca0d40618dc7fa94b910547366425e6f1ef (diff)
[libclang] Visit TypeAliasTemplateDecl
This makes TypeAliasTemplateDecl accessible via LibClang and python bindings Differential Revision: http://reviews.llvm.org/D13844 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@253166 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index 8896dc258b..98278515e5 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -2296,8 +2296,9 @@ enum CXCursorKind {
* \brief A module import declaration.
*/
CXCursor_ModuleImportDecl = 600,
+ CXCursor_TypeAliasTemplateDecl = 601,
CXCursor_FirstExtraDecl = CXCursor_ModuleImportDecl,
- CXCursor_LastExtraDecl = CXCursor_ModuleImportDecl,
+ CXCursor_LastExtraDecl = CXCursor_TypeAliasTemplateDecl,
/**
* \brief A code completion overload candidate.