]> granicus.if.org Git - clang/commitdiff
Bump libclang API minor version after r271351.
authorManman Ren <manman.ren@gmail.com>
Fri, 3 Jun 2016 23:11:41 +0000 (23:11 +0000)
committerManman Ren <manman.ren@gmail.com>
Fri, 3 Jun 2016 23:11:41 +0000 (23:11 +0000)
Also use the next enum value for CXObjCPropertyAttr_class.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@271747 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang-c/Index.h

index 896d317732be602b52a6e003f4ad70954ebe5914..4691af76b763847feb142e372c5bfcfb58b64d9e 100644 (file)
@@ -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;
 
 /**