| 47 | |
| 48 | template<class Cursor> |
| 49 | forceinline void |
| 50 | PostorderNodeVisitor<Cursor>::moveToLeaf(void) { |
| 51 | while (c.mayMoveDownwards()) { |
| 52 | c.moveDownwards(); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | template<class Cursor> |
| 57 | PostorderNodeVisitor<Cursor>::PostorderNodeVisitor(const Cursor& c0) |
nothing calls this directly
no test coverage detected