| 3698 | } |
| 3699 | |
| 3700 | inline bool is_text_node(xml_node_struct* node) |
| 3701 | { |
| 3702 | xml_node_type type = static_cast<xml_node_type>((node->header & impl::xml_memory_page_type_mask) + 1); |
| 3703 | |
| 3704 | return type == node_pcdata || type == node_cdata; |
| 3705 | } |
| 3706 | |
| 3707 | // get value with conversion functions |
| 3708 | PUGI__FN int get_value_int(const char_t* value, int def) |
no outgoing calls
no test coverage detected