summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorManman Ren <manman.ren@gmail.com>2016-06-03 23:11:41 +0000
committerManman Ren <manman.ren@gmail.com>2016-06-03 23:11:41 +0000
commit389b53d798a6643d4e58865879bd90a394f9f02c (patch)
tree8f48794223fbd1cdb62b5442e3b72ac304c83d5f /include/clang-c
parent4adb3cedbb756d444192b7e23da778aa830c08e8 (diff)
Bump libclang API minor version after r271351.
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
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index 896d317732..4691af76b7 100644
--- a/include/clang-c/Index.h
+++ b/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;
/**