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/include/clang-c | |
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/include/clang-c')
-rw-r--r-- | clang/include/clang-c/Index.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 0c73855da8c..af5b93c733c 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/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, |