I'm using gcc2.7.2.2 + objective C patch + gstep-base-0.2.12
gcc -v shows:
Reading specs from
/usr/local/lib/gcc-lib/sparc-sun-solaris2.5/2.7.2.2/specs
gcc driver version 2.7.2.2 Objective-C snapshot 960906 executing gcc
version 2.7.2.2
In Set:
- (void) dealloc
{
NSFreeHashTable (_contents_hash);
[super _collectionDealloc];
In ConstantCollection (super class of Set):Quote:}
- (void) _collectionDealloc
{
return;
So, Set's instance doesnot dealloc itself, doesn't it?Quote:}
Jake Song