Basic tidyup for start of support for apple runtime

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@7949 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 2000-10-31 16:17:33 +00:00
parent 37f9223291
commit 3df5d8e527
39 changed files with 266 additions and 388 deletions

View file

@ -25,7 +25,6 @@
#include <config.h>
#include <Foundation/NSSet.h>
#include <base/behavior.h>
#include <base/fast.x>
#include <Foundation/NSAutoreleasePool.h>
#include <Foundation/NSArray.h>
#include <Foundation/NSException.h>
@ -250,7 +249,7 @@ static Class mutableSetClass;
return NO;
// Loop for all members in otherSet
c = GSObjCClassOfObject(otherSet);
c = GSObjCClass(otherSet);
if (c == setClass || c == mutableSetClass)
{
GSIMapNode node = ((NSGSet*)otherSet)->map.firstNode;
@ -320,7 +319,7 @@ static Class mutableSetClass;
}
else
{
Class c = GSObjCClassOfObject(other);
Class c = GSObjCClass(other);
if (c == setClass || c == mutableSetClass)
{