Extra ivar for addObject: implementation

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@4217 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 1999-05-06 20:24:50 +00:00
parent 5f24d0ac3d
commit 43bb6287ca

View file

@ -81,6 +81,8 @@ struct autorelease_array_list
struct autorelease_array_list *_released_head;
/* The total number of objects autoreleased in this pool. */
unsigned _released_count;
/* The method to add an object to this pool */
void (*addImp)(id, SEL, id);
}
+ (void)addObject: anObject;