| 737 | edge[i] = NULL; |
| 738 | } |
| 739 | ~Node() |
| 740 | { |
| 741 | for (int i = 0; i < 16; ++i) |
| 742 | if (edge[i] != NULL) |
| 743 | delete[] edge[i]; |
| 744 | } |
| 745 | Node **edge[16]; ///< 16x16 edges, one per 8-bit char |
| 746 | Accept accept; ///< nonzero if final state, the index of an accepted/captured subpattern |
| 747 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected