summaryrefslogtreecommitdiff
path: root/bindings
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 /bindings
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 'bindings')
-rw-r--r--bindings/python/clang/cindex.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bindings/python/clang/cindex.py b/bindings/python/clang/cindex.py
index f5caca8572..6a928c3f1d 100644
--- a/bindings/python/clang/cindex.py
+++ b/bindings/python/clang/cindex.py
@@ -1100,6 +1100,8 @@ CursorKind.CUDAGLOBAL_ATTR = CursorKind(414)
CursorKind.CUDAHOST_ATTR = CursorKind(415)
CursorKind.CUDASHARED_ATTR = CursorKind(416)
+CursorKind.VISIBILITY_ATTR = CursorKind(417)
+
###
# Preprocessing
CursorKind.PREPROCESSING_DIRECTIVE = CursorKind(500)