audited types.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@189072
91177308-0d34-0410-b5e6-
96231b3b80d8
IsVoidStarType(AT) ||
// If an ObjC object is type, assuming that it is not a CF function and
// that it is an un-audited function.
- AT->isObjCObjectPointerType())
+ AT->isObjCObjectPointerType() || AT->isObjCBuiltinType())
return false;
// All other pointers are assumed audited as harmless.
return true;
} // no-warning
CFAttributedStringRef CFAttributedCreate(void *CFObj CF_CONSUMED) CF_RETURNS_RETAINED;
+
+@interface Action
+- (SEL)action;
+- (void)setAction:(SEL)aSelector;
+- (id) target;
+- (void)setTarget:(id)aTarget;
+@end
CF_IMPLICIT_BRIDGING_DISABLED
+
+@interface Action
+@property(nonatomic) SEL action;
+
+@property(nonatomic, unsafe_unretained) id target;
+
+@end