| 724 | |
| 725 | #if !CATCH_ARC_ENABLED |
| 726 | inline void arcSafeRelease(NSObject *obj) { |
| 727 | [obj release]; |
| 728 | } |
| 729 | inline id performOptionalSelector(id obj, SEL sel) { |
| 730 | if ([obj respondsToSelector:sel]) |
| 731 | return [obj performSelector:sel]; |
no outgoing calls
no test coverage detected