r271747 - Bump libclang API minor version after r271351.
Manman Ren via cfe-commits
cfe-commits at lists.llvm.org
Fri Jun 3 16:11:41 PDT 2016
Author: mren
Date: Fri Jun 3 18:11:41 2016
New Revision: 271747
URL: http://llvm.org/viewvc/llvm-project?rev=271747&view=rev
Log:
Bump libclang API minor version after r271351.
Also use the next enum value for CXObjCPropertyAttr_class.
Modified:
cfe/trunk/include/clang-c/Index.h
Modified: cfe/trunk/include/clang-c/Index.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang-c/Index.h?rev=271747&r1=271746&r2=271747&view=diff
==============================================================================
--- cfe/trunk/include/clang-c/Index.h (original)
+++ cfe/trunk/include/clang-c/Index.h Fri Jun 3 18:11:41 2016
@@ -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;
/**
More information about the cfe-commits
mailing list