| 130 | } |
| 131 | |
| 132 | float |
| 133 | ParseCommandArgFloat(const char *s) |
| 134 | { |
| 135 | char *endptr; |
| 136 | auto value = ParseFloat(s, &endptr); |
| 137 | if (endptr == s || *endptr != 0) |
| 138 | throw MakeArgError("Float expected", s); |
| 139 | |
| 140 | return value; |
| 141 | } |
| 142 | |
| 143 | SongTime |
| 144 | ParseCommandArgSongTime(const char *s) |
no test coverage detected