| 1 | #import <Foundation/Foundation.h> |
|---|---|
| 2 | |
| 3 | #import "TestExt.h" |
| 4 | #import "Foo.h" |
| 5 | |
| 6 | @implementation Test (Stuff) |
| 7 | - (void)doSomethingElse: (CMTimeRange *)range_ptr { |
| 8 | NSLog(@"doSomethingElse: %p", range_ptr); // break here |
| 9 | } |
| 10 | @end |
| 11 |
| 1 | #import <Foundation/Foundation.h> |
|---|---|
| 2 | |
| 3 | #import "TestExt.h" |
| 4 | #import "Foo.h" |
| 5 | |
| 6 | @implementation Test (Stuff) |
| 7 | - (void)doSomethingElse: (CMTimeRange *)range_ptr { |
| 8 | NSLog(@"doSomethingElse: %p", range_ptr); // break here |
| 9 | } |
| 10 | @end |
| 11 |