diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2014-08-08 17:31:14 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2014-08-08 17:31:14 +0000 |
commit | 495bc3f5f6a1924dddfeb3c090520175e637af4d (patch) | |
tree | 691b5a3a8bccc2e4c587ee19079b7098067a08e0 /clang/test/CodeGenObjC/Inputs/literal-support.h | |
parent | 241fd486eb4134361de5f571ed6b929d1603241a (diff) | |
download | bcm5719-llvm-495bc3f5f6a1924dddfeb3c090520175e637af4d.tar.gz bcm5719-llvm-495bc3f5f6a1924dddfeb3c090520175e637af4d.zip |
Objective-C ARC. Use of non-retain/autorelease API
for building Objective-C array literals in ARC
mode. rdar://17554063
llvm-svn: 215232
Diffstat (limited to 'clang/test/CodeGenObjC/Inputs/literal-support.h')
-rw-r--r-- | clang/test/CodeGenObjC/Inputs/literal-support.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/CodeGenObjC/Inputs/literal-support.h b/clang/test/CodeGenObjC/Inputs/literal-support.h index 475c86af241..caa69c24caf 100644 --- a/clang/test/CodeGenObjC/Inputs/literal-support.h +++ b/clang/test/CodeGenObjC/Inputs/literal-support.h @@ -30,6 +30,7 @@ typedef unsigned char BOOL; @interface NSArray (NSArrayCreation) + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt; +- (id)initWithObjects:(const id [])objects count:(unsigned long)cnt; @end @interface NSDictionary : NSObject |