| 5654 | #endif |
| 5655 | |
| 5656 | PUGI__FN bool xml_text::set(const char_t* rhs) |
| 5657 | { |
| 5658 | xml_node_struct* dn = _data_new(); |
| 5659 | |
| 5660 | return dn ? impl::strcpy_insitu(dn->value, dn->header, impl::xml_memory_page_value_allocated_mask, rhs) : false; |
| 5661 | } |
| 5662 | |
| 5663 | PUGI__FN bool xml_text::set(int rhs) |
| 5664 | { |
nothing calls this directly
no test coverage detected