| 652 | |
| 653 | |
| 654 | bool XMLUtil::ToFloat( const char* str, float* value ) |
| 655 | { |
| 656 | if ( TIXML_SSCANF( str, "%f", value ) == 1 ) { |
| 657 | return true; |
| 658 | } |
| 659 | return false; |
| 660 | } |
| 661 | |
| 662 | |
| 663 | bool XMLUtil::ToDouble( const char* str, double* value ) |
nothing calls this directly
no outgoing calls
no test coverage detected