| 6557 | } |
| 6558 | |
| 6559 | explicit xpath_string(const char_t* str, xpath_allocator* alloc) |
| 6560 | { |
| 6561 | bool empty_ = (*str == 0); |
| 6562 | |
| 6563 | _buffer = empty_ ? PUGIXML_TEXT("") : duplicate_string(str, alloc); |
| 6564 | _uses_heap = !empty_; |
| 6565 | } |
| 6566 | |
| 6567 | explicit xpath_string(const char_t* str, bool use_heap) : |
| 6568 | _buffer(str), |
no test coverage detected