It also appears to be necessary to eliminate a warning with XCode 4.2 (LLVM). Specifically:
-(void) release { }
gives the following warning in XCode 4.2 (with LLVM):
warning: Semantic Issue: Conflicting distributed object modifiers on return type in implementation of 'release'
The warning can be eliminated by adding the oneway modifier:
-(oneway void) release { }
This is in the implementation of a singleton so release really does not do anything.
This is necessary (at least to eliminate the warning) on iOS as well as OS X. The NSObject protocol in the iOS docs defines release as (oneway void) even though there are no Distributed Objects in iOS. It appears that LLVM picks this up whereas GCC does not.
oneway voidis one of those beautiful accidental metaphors we sometimes see in coding, in this case for death. "If there's anything on the other side, don't tell us." – buildsucceeded Feb 13 at 10:21