summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2015-09-05 18:53:43 +0000
committerSaleem Abdulrasool <compnerd@compnerd.org>2015-09-05 18:53:43 +0000
commit3697393ad1b012b7c0ed60c952124ff80731a1a8 (patch)
tree481662d30961d54f932c248138b3e5c9f2f42a39 /include/clang-c
parent7a7e52f3db9e806149a36fe3469a36a2e1bfe1f2 (diff)
Index: expose visibility attribute
Expose the previously unexposed visibility attribute via the python and C bindings. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@246931 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index 0c73855da8..af5b93c733 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -32,7 +32,7 @@
* compatible, thus CINDEX_VERSION_MAJOR is expected to remain stable.
*/
#define CINDEX_VERSION_MAJOR 0
-#define CINDEX_VERSION_MINOR 30
+#define CINDEX_VERSION_MINOR 31
#define CINDEX_VERSION_ENCODE(major, minor) ( \
((major) * 10000) \
@@ -2279,7 +2279,8 @@ enum CXCursorKind {
CXCursor_CUDAGlobalAttr = 414,
CXCursor_CUDAHostAttr = 415,
CXCursor_CUDASharedAttr = 416,
- CXCursor_LastAttr = CXCursor_CUDASharedAttr,
+ CXCursor_VisibilityAttr = 417,
+ CXCursor_LastAttr = CXCursor_VisibilityAttr,
/* Preprocessing */
CXCursor_PreprocessingDirective = 500,