discuss-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

question about core/base/Old/LinkedList.m (prehistory)


From: Matej Kosik
Subject: question about core/base/Old/LinkedList.m (prehistory)
Date: Sat, 10 Nov 2001 21:41:56 +0100

Hi,

Even though libgnustep* seem not to be using any of the classes
defined in `core/base/Old' directory, these files were not thrown away
from cvs so I think I can still ask the following thing:

I don't understand why in `core/base/Old/LinkedList.m' I do not find
any method which releases the particular `LinkedListNode' objects
belonging to that list. (???)

should there be something like this?

----------------------------------------------------
- dealloc
{
        LinkedListNode* link;

        FOR_COLLECTION (self, link)
        {
                RELEASE(link);
        }
        END_FOR_COLLECTION (self);
}
----------------------------------------------------

Matej Kosik



reply via email to

[Prev in Thread] Current Thread [Next in Thread]