| Top / ReleaseNote | English |
BEHAVIOR: When a class belong to multiple pattern and some situation returned null (e.g. end of iterator execution), these functions didn't correctly work.
child(), last(), parent(), del(), num() for jjAggregate
child(), last(), num(), fwd() for jjCollect,
child(), last(), num(), bwd(), fwd() for jjDCollect
sel(), num() for jjHash
first(), last(), from(), to(), fwd(), num() for jjGraph
In member function `void foo::bar(...)':This is not a really issue. I'll fix in later release.
warning: invalid access to non-static data member `foo' of NULL object
warning: (perhaps the `offsetof' macro was used incorrectly)
class Node {
EXT_Node
:
};
:
jjCollect(tree, Node, Node); //or
jjDCollect(tree, Node, Node); //or
jjAggregate(tree, Node, Node); //or
jjHash(tree, Node, Node);
|