master
Daniel Kolesa 2016-07-26 00:42:34 +01:00
parent 5c034624a9
commit 0010511b6e
1 changed files with 1 additions and 2 deletions

View File

@ -19,8 +19,7 @@ static inline int cs_parse_int(ostd::ConstCharRange s) {
return parseint(s.data());
}
static inline float parsefloat(char const *s)
{
static inline float parsefloat(char const *s) {
/* not all platforms (windows) can parse hexadecimal integers via strtod */
char *end;
double val = strtod(s, &end);