| 295 | |
| 296 | template<> |
| 297 | uint8_t stringToNumber(const std::string& s, const int base) |
| 298 | { |
| 299 | const unsigned int num = stringToNumber<unsigned int>(s, base); |
| 300 | return (uint8_t)num; |
| 301 | } |
| 302 | |
| 303 | bool isNumericString(const std::string& s) |
| 304 | { |
nothing calls this directly
no outgoing calls
no test coverage detected