More ARC fixups: id* -> const id* in NSSet

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33666 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Chisnall 2011-07-31 18:34:40 +00:00
parent 2fabc5d951
commit 8713e21d91
4 changed files with 8 additions and 8 deletions

View file

@ -252,7 +252,7 @@ static Class mutableSetClass;
}
/* Designated initialiser */
- (id) initWithObjects: (id*)objs count: (NSUInteger)c
- (id) initWithObjects: (const id*)objs count: (NSUInteger)c
{
NSUInteger i;
@ -604,7 +604,7 @@ static Class mutableSetClass;
return self;
}
- (id) initWithObjects: (id*)objects
- (id) initWithObjects: (const id*)objects
count: (NSUInteger)count
{
self = [self initWithCapacity: count];