| 72 | const Trie* _trie; |
| 73 | |
| 74 | Node(u32 key, u32 order, const Trie* trie) : _key(key), _order(order), _trie(trie) { |
| 75 | } |
| 76 | |
| 77 | static bool orderByName(const Node& a, const Node& b) { |
| 78 | return a._order < b._order; |
nothing calls this directly
no outgoing calls
no test coverage detected