| 9452 | |
| 9453 | #ifndef PUGIXML_NO_STL |
| 9454 | string_t xpath_query::evaluate_string(const xpath_node& n) const |
| 9455 | { |
| 9456 | xpath_stack_data sd; |
| 9457 | |
| 9458 | return evaluate_string_impl(static_cast<xpath_query_impl*>(_impl), n, sd).c_str(); |
| 9459 | } |
| 9460 | #endif |
| 9461 | |
| 9462 | size_t xpath_query::evaluate_string(char_t* buffer, size_t capacity, const xpath_node& n) const |
nothing calls this directly
no test coverage detected