YouCompleteMe/cpp/llvm/tools/clang/test/PCH/Inputs/arc.h
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

27 lines
529 B
Objective-C

// Header for Objective-C ARC-related PCH tests
typedef const void *CFTypeRef;
typedef const struct __CFString *CFStringRef;
CFTypeRef CFCreateSomething();
CFStringRef CFCreateString();
CFTypeRef CFGetSomething();
CFStringRef CFGetString();
@interface NSString
@end
id CreateSomething();
NSString *CreateNSString();
#if __has_feature(objc_arc)
#define BRIDGE __bridge
#else
#define BRIDGE
#endif
typedef int array0[sizeof((BRIDGE id)CFCreateSomething())];
typedef int array1[sizeof((BRIDGE CFTypeRef)CreateSomething())];