From 389b53d798a6643d4e58865879bd90a394f9f02c Mon Sep 17 00:00:00 2001 From: Manman Ren Date: Fri, 3 Jun 2016 23:11:41 +0000 Subject: [PATCH] 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 --- include/clang-c/Index.h | 4 ++-- 1 file 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; /** -- 2.40.0