| 618 | } |
| 619 | |
| 620 | bool XMLUtil::ToUnsigned(const char* str, unsigned* value) |
| 621 | { |
| 622 | if (TIXML_SSCANF(str, IsPrefixHex(str) ? "%x" : "%u", value) == 1) { |
| 623 | return true; |
| 624 | } |
| 625 | return false; |
| 626 | } |
| 627 | |
| 628 | bool XMLUtil::ToBool( const char* str, bool* value ) |
| 629 | { |
nothing calls this directly
no test coverage detected