| 626 | } |
| 627 | |
| 628 | bool XMLUtil::ToUnsigned(const char* str, unsigned* value) |
| 629 | { |
| 630 | if (TIXML_SSCANF(str, IsPrefixHex(str) ? "%x" : "%u", value) == 1) { |
| 631 | return true; |
| 632 | } |
| 633 | return false; |
| 634 | } |
| 635 | |
| 636 | bool XMLUtil::ToBool( const char* str, bool* value ) |
| 637 | { |
nothing calls this directly
no test coverage detected