Skip to content
This repository has been archived by the owner on May 19, 2018. It is now read-only.

Commit

Permalink
Fixes an ARC incompatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
robrix committed Mar 21, 2012
1 parent 7eeb302 commit 59e8ea1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions RXFutures/RXFuture.m
Expand Up @@ -17,7 +17,11 @@ @implementation RXFuture


+(RXFuture *)future {
#if !__has_feature(objc_arc)
return [[self new] autorelease];
#else
return [self new];
#endif
}


Expand Down

0 comments on commit 59e8ea1

Please sign in to comment.