| 8921 | void push_back_grow(const xpath_node& node, xpath_allocator* alloc); |
| 8922 | |
| 8923 | void push_back(const xpath_node& node, xpath_allocator* alloc) |
| 8924 | { |
| 8925 | if (_end != _eos) |
| 8926 | *_end++ = node; |
| 8927 | else |
| 8928 | push_back_grow(node, alloc); |
| 8929 | } |
| 8930 | |
| 8931 | void append(const xpath_node* begin_, const xpath_node* end_, xpath_allocator* alloc) |
| 8932 | { |
no outgoing calls
no test coverage detected