| 296 | } |
| 297 | |
| 298 | char * pugiNodePath ( const pugi::xml_node & node, char * delimiter, Context * context, LineInfoArg * at ) { |
| 299 | auto path = node.path(delimiter && delimiter[0] ? delimiter[0] : '/'); |
| 300 | return context->allocateString(path.c_str(), uint32_t(path.length()), at); |
| 301 | } |
| 302 | |
| 303 | char * pugiNodePrint ( const pugi::xml_node & node, char * indent, uint32_t flags, pugi::xml_encoding encoding, Context * context, LineInfoArg * at ) { |
| 304 | std::ostringstream oss; |
nothing calls this directly
no test coverage detected