summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorManman Ren <manman.ren@gmail.com>2016-05-31 23:22:04 +0000
committerManman Ren <manman.ren@gmail.com>2016-05-31 23:22:04 +0000
commitc4b3e8287556482c56c6414ba755f8ee1834ae13 (patch)
treef178196c8964ead61e1b81b41e0a45e4a6aca91c /include/clang-c
parent5e67eafc15aff8b5a7e50ed4fb1ce64679d708f9 (diff)
Indexer: add CXObjCPropertyAttr_class for class properties.
rdar://25963227 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@271351 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index dbcd0c8840..896d317732 100644
--- a/include/clang-c/Index.h
+++ b/include/clang-c/Index.h
@@ -3911,7 +3911,8 @@ typedef enum {
CXObjCPropertyAttr_atomic = 0x100,
CXObjCPropertyAttr_weak = 0x200,
CXObjCPropertyAttr_strong = 0x400,
- CXObjCPropertyAttr_unsafe_unretained = 0x800
+ CXObjCPropertyAttr_unsafe_unretained = 0x800,
+ CXObjCPropertyAttr_class = 0x4000
} CXObjCPropertyAttrKind;
/**