diff options
author | Manman Ren <manman.ren@gmail.com> | 2016-06-03 23:11:41 +0000 |
---|---|---|
committer | Manman Ren <manman.ren@gmail.com> | 2016-06-03 23:11:41 +0000 |
commit | 400e4c34d36df3b8571cb92f297efa7a060480af (patch) | |
tree | 6446d2df5742a198f78dfa75c79dc722ad45859b /clang/include/clang-c | |
parent | 6c44e9e33d6f58da12fba5f3260eb5d68d9a65c1 (diff) | |
download | bcm5719-llvm-400e4c34d36df3b8571cb92f297efa7a060480af.tar.gz bcm5719-llvm-400e4c34d36df3b8571cb92f297efa7a060480af.zip |
Bump libclang API minor version after r271351.
Also use the next enum value for CXObjCPropertyAttr_class.
llvm-svn: 271747
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r-- | clang/include/clang-c/Index.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 896d317732b..4691af76b76 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 34 +#define CINDEX_VERSION_MINOR 35 #define CINDEX_VERSION_ENCODE(major, minor) ( \ ((major) * 10000) \ @@ -3912,7 +3912,7 @@ typedef enum { CXObjCPropertyAttr_weak = 0x200, CXObjCPropertyAttr_strong = 0x400, CXObjCPropertyAttr_unsafe_unretained = 0x800, - CXObjCPropertyAttr_class = 0x4000 + CXObjCPropertyAttr_class = 0x1000 } CXObjCPropertyAttrKind; /** |