- (void)release;
to
- (oneway void)release;
so everything implementing -release actually implements the one declared in the NSObject protocol.

Start marking things that are unavailable in ARC mode as unavailable in ARC mode.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33660 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
theraven 2011-07-31 15:31:39 +00:00
parent 1d53b9c278
commit f77f9b1f35
19 changed files with 33 additions and 25 deletions

View file

@ -299,7 +299,7 @@ static NSURLProtocol *placeholder = nil;
}
[super dealloc];
}
- (void) release
- (oneway void) release
{
/* In a multi-threaded environment we could have two threads release the
* class at the same time ... causing -dealloc to be called twice at the