mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-16 12:36:37 +00:00
11 lines
258 B
Objective-C
11 lines
258 B
Objective-C
|
|
#pragma clang system_header
|
|
|
|
@class NSString;
|
|
|
|
// Do not emit warnings when using NSLocalizedString
|
|
extern NSString *GetLocalizedString(NSString *str);
|
|
#define NSLocalizedString(key) GetLocalizedString(key)
|
|
|
|
#define NSAssert(fmt, arg) NSLog(fmt, arg, 0, 0)
|