Skip to content

Commit d807731

Browse files
committed
• Removed another legacy SSY_ARC_OR_NO_ARC dependency which was required for macOS 10.5.
1 parent ad8e525 commit d807731

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

SSYRunLoopTickler.m

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#import "SSYRunLoopTickler.h"
2-
#import "SSY_ARC_OR_NO_ARC.h"
32

43
@implementation SSYRunLoopTickler
54

@@ -19,7 +18,7 @@ + (void)tickle {
1918
NSLog(@"%s failed to send its message.", __PRETTY_FUNCTION__) ;
2019
}
2120

22-
#if NO_ARC
21+
#if !__has_feature(objc_arc)
2322
[message release] ;
2423
#endif
2524

@@ -42,4 +41,4 @@ + (void)removePort:(NSPort*)port {
4241
forMode:NSDefaultRunLoopMode] ;
4342
}
4443

45-
@end
44+
@end

0 commit comments

Comments
 (0)