| 9128 | void push_back_grow(const xpath_node& node, xpath_allocator* alloc); |
| 9129 | |
| 9130 | void push_back(const xpath_node& node, xpath_allocator* alloc) |
| 9131 | { |
| 9132 | if (_end != _eos) |
| 9133 | *_end++ = node; |
| 9134 | else |
| 9135 | push_back_grow(node, alloc); |
| 9136 | } |
| 9137 | |
| 9138 | void append(const xpath_node* begin_, const xpath_node* end_, xpath_allocator* alloc) |
| 9139 | { |
no outgoing calls
no test coverage detected