diff options
| author | Sergey Kalinichev <kalinichev.so.0@gmail.com> | 2015-11-15 13:48:32 +0000 |
|---|---|---|
| committer | Sergey Kalinichev <kalinichev.so.0@gmail.com> | 2015-11-15 13:48:32 +0000 |
| commit | 8f3b187e21e3a92803236003a4a3939aa9324c3c (patch) | |
| tree | 433f4b38b92aadd40d43bdd56e815da24555a875 /clang/include/clang-c | |
| parent | c015120b535e8090d9cd836f870e74d21f917807 (diff) | |
| download | bcm5719-llvm-8f3b187e21e3a92803236003a4a3939aa9324c3c.tar.gz bcm5719-llvm-8f3b187e21e3a92803236003a4a3939aa9324c3c.zip | |
[libclang] Visit TypeAliasTemplateDecl
This makes TypeAliasTemplateDecl accessible via LibClang and python bindings
Differential Revision: http://reviews.llvm.org/D13844
llvm-svn: 253166
Diffstat (limited to 'clang/include/clang-c')
| -rw-r--r-- | clang/include/clang-c/Index.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 8896dc258b3..98278515e5c 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/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. |

