| 695 | #ifdef WITH_TREE_MAP |
| 696 | struct Node { |
| 697 | Node() |
| 698 | : |
| 699 | accept(0) |
| 700 | { } |
| 701 | std::map<Char,Node> edges; ///< edges to next tree nodes |
| 702 | Accept accept; ///< nonzero if final state, the index of an accepted/captured subpattern |
| 703 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected