We need to import foundation to get a 'NSLog' declaration when building against the iOS SDK. This doesn't appear necessary when building against the macOS SDK, presumable because it gets transitively imported by objc/NSObject.h
11 lines
220 B
Objective-C
11 lines
220 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import "TestExt.h"
|
|
#import "Foo.h"
|
|
|
|
@implementation Test (Stuff)
|
|
- (void)doSomethingElse: (CMTimeRange *)range_ptr {
|
|
NSLog(@"doSomethingElse: %p", range_ptr); // break here
|
|
}
|
|
@end
|