diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2015-09-05 18:53:43 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2015-09-05 18:53:43 +0000 |
commit | 79c6971cdf6591b0daabc22a1be4707bca1b0156 (patch) | |
tree | af22680d7230b849997bc1c07f05da30a597c8de /clang/bindings/python | |
parent | ea33e5e88e0e55c05a659d0b5f85327e204faa49 (diff) | |
download | bcm5719-llvm-79c6971cdf6591b0daabc22a1be4707bca1b0156.tar.gz bcm5719-llvm-79c6971cdf6591b0daabc22a1be4707bca1b0156.zip |
Index: expose visibility attribute
Expose the previously unexposed visibility attribute via the python and C
bindings.
llvm-svn: 246931
Diffstat (limited to 'clang/bindings/python')
-rw-r--r-- | clang/bindings/python/clang/cindex.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/bindings/python/clang/cindex.py b/clang/bindings/python/clang/cindex.py index f5caca8572c..6a928c3f1dc 100644 --- a/clang/bindings/python/clang/cindex.py +++ b/clang/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) |