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

@ -62,7 +62,8 @@ static Class concreteClass = Nil;
- (id) initWithOptions: (NSPointerFunctionsOptions)options
{
return [self subclassResponsibility: _cmd];
[self subclassResponsibility: _cmd];
return nil;
}
- (void* (*)(const void *item,