| 191 | // atot: template version of atoi/atof: convert a string to an instance of T. |
| 192 | template<typename T> |
| 193 | bool atot_scalar(const char *s, T *val, bool_constant<false>) { |
| 194 | return StringToNumber(s, val); |
| 195 | } |
| 196 | |
| 197 | template<typename T> |
| 198 | bool atot_scalar(const char *s, T *val, bool_constant<true>) { |
no test coverage detected