mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-01 17:12:03 +00:00
Final batch of GC cleanups (for the forseeable future).
This commit is contained in:
parent
b49af95359
commit
28a6e6ebbd
7 changed files with 61 additions and 43 deletions
|
@ -204,12 +204,16 @@ static Class concreteClass = Nil;
|
|||
|
||||
+ (id) pointerArrayWithStrongObjects
|
||||
{
|
||||
return [self pointerArrayWithOptions: NSPointerFunctionsStrongMemory];
|
||||
GSOnceMLog(@"Garbage Collection no longer supported."
|
||||
@" Using +strongObjectsPointerArray");
|
||||
return [self strongObjectsPointerArray];
|
||||
}
|
||||
|
||||
+ (id) pointerArrayWithWeakObjects
|
||||
{
|
||||
return [self pointerArrayWithOptions: NSPointerFunctionsWeakMemory];
|
||||
GSOnceMLog(@"Garbage Collection no longer supported."
|
||||
@" Using +weakObjectsPointerArray");
|
||||
return [self weakObjectsPointerArray];
|
||||
}
|
||||
|
||||
- (NSArray*) allObjects
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue