Silence some warnings caused by returning the result of a method that doesn't return.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32077 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
theraven 2011-02-11 14:51:47 +00:00
parent 02767906b5
commit 8782cf13e8
6 changed files with 20 additions and 10 deletions

View file

@ -194,7 +194,8 @@
- (id) copyWithZone: (NSZone*)zone
{
return [self notImplemented: _cmd];
[self notImplemented: _cmd];
return nil;
}
- (void) dealloc