Assuming my guess (your linked thread) about old suggestions remaining on file, you will be at least the first "checkmark."
I'm still waiting to support doubly-linked lists thus..
Code:
TYPE ParentType ... pChild AS ChildType PTR ' pointer to first child ... END TYPE TYPE ChildType ... pParent AS ParentType PTR ' pointer to parent ... END TYPE
Workaround: make them both the same TYPE and you are OK. For some reason you can self-reference, as in ....
Code:
TYPE NodeType ... pParent AS NodeType PTR ' ref to type which is not yet fully defined. Works OK. .... END TYPE
Leave a comment: