| 10088 | |
| 10089 | #ifndef PUGIXML_NO_STL |
| 10090 | PUGI__FN string_t xpath_query::evaluate_string(const xpath_node& n) const |
| 10091 | { |
| 10092 | impl::xpath_stack_data sd; |
| 10093 | |
| 10094 | return impl::evaluate_string_impl(static_cast<impl::xpath_query_impl*>(_impl), n, sd).c_str(); |
| 10095 | } |
| 10096 | #endif |
| 10097 | |
| 10098 | PUGI__FN size_t xpath_query::evaluate_string(char_t* buffer, size_t capacity, const xpath_node& n) const |
nothing calls this directly
no outgoing calls
no test coverage detected