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:
David Chisnall 2011-02-11 14:51:47 +00:00
parent 9e6401bbdf
commit 104c14bbf1
6 changed files with 20 additions and 10 deletions

View file

@ -972,7 +972,8 @@ const NSHashTableCallBacks NSPointerToStructHashCallBacks =
- (id) initWithCoder: (NSCoder*)aCoder
{
return [self subclassResponsibility: _cmd];
[self subclassResponsibility: _cmd];
return nil;
}
- (id) initWithPointerFunctions: (NSPointerFunctions*)functions