| 109 | } // namespace |
| 110 | |
| 111 | bool ParseNumber(const char* str, signed char* value, char** endptr, int base) |
| 112 | { |
| 113 | return ParseNumberT<long>(str, value, endptr, base); |
| 114 | } |
| 115 | |
| 116 | bool ParseNumber(const char* str, unsigned char* value, char** endptr, int base) |
| 117 | { |
nothing calls this directly
no test coverage detected