| 7867 | void push_back_grow(const xpath_node& node, xpath_allocator* alloc); |
| 7868 | |
| 7869 | void push_back(const xpath_node& node, xpath_allocator* alloc) |
| 7870 | { |
| 7871 | if (_end != _eos) |
| 7872 | *_end++ = node; |
| 7873 | else |
| 7874 | push_back_grow(node, alloc); |
| 7875 | } |
| 7876 | |
| 7877 | void append(const xpath_node* begin_, const xpath_node* end_, xpath_allocator* alloc) |
| 7878 | { |
no outgoing calls
no test coverage detected