| 156 | // Print data node |
| 157 | template<class OutIt, class Ch> |
| 158 | inline OutIt print_data_node(OutIt out, const xml_node<Ch> *node, int flags, int indent) |
| 159 | { |
| 160 | assert(node->type() == node_data); |
| 161 | if (!(flags & print_no_indenting)) |
| 162 | out = fill_chars(out, indent, Ch('\t')); |
| 163 | out = copy_and_expand_chars(node->value(), node->value() + node->value_size(), Ch(0), out); |
| 164 | return out; |
| 165 | } |
| 166 | |
| 167 | // Print data node |
| 168 | template<class OutIt, class Ch> |
no test coverage detected