diff options
Diffstat (limited to 'clang/test/CodeGenObjCXX/Inputs/literal-support.h')
-rw-r--r-- | clang/test/CodeGenObjCXX/Inputs/literal-support.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/clang/test/CodeGenObjCXX/Inputs/literal-support.h b/clang/test/CodeGenObjCXX/Inputs/literal-support.h index 174ec3a83cf..5680a20c9fb 100644 --- a/clang/test/CodeGenObjCXX/Inputs/literal-support.h +++ b/clang/test/CodeGenObjCXX/Inputs/literal-support.h @@ -3,10 +3,6 @@ typedef unsigned char BOOL; -@interface NSObject -+ (id)alloc; -@end - @interface NSNumber @end @interface NSNumber (NSNumberCreation) @@ -25,15 +21,14 @@ typedef unsigned char BOOL; + (NSNumber *)numberWithBool:(BOOL)value; @end -@interface NSArray : NSObject +@interface NSArray @end @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 +@interface NSDictionary + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt; @end |