mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
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:
parent
2fabc5d951
commit
8713e21d91
4 changed files with 8 additions and 8 deletions
|
@ -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];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue