aboutsummaryrefslogtreecommitdiff
path: root/include/clang-c
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-08-31 19:31:58 +0000
committerDouglas Gregor <dgregor@apple.com>2010-08-31 19:31:58 +0000
commit74dbe640021d96a8dbb85c592471c04449ade81c (patch)
tree68bdb63b162241870691029b57e8bf073b876f18 /include/clang-c
parent39d6f07b056c31e1e6b5946165ed4b23e7887f22 (diff)
Add libclang support for class template partial specializations,
including a cursor kind, visitation, and USRs. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112629 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index 7131853d52..04d9bbcedf 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -992,9 +992,11 @@ enum CXCursorKind {
CXCursor_FunctionTemplate = 30,
/** \brief A C++ class template. */
CXCursor_ClassTemplate = 31,
+ /** \brief A C++ class template partial specialization. */
+ CXCursor_ClassTemplatePartialSpecialization = 32,
CXCursor_FirstDecl = CXCursor_UnexposedDecl,
- CXCursor_LastDecl = CXCursor_ClassTemplate,
+ CXCursor_LastDecl = CXCursor_ClassTemplatePartialSpecialization,
/* References */
CXCursor_FirstRef = 40, /* Decl references */