parser/inpeval.c, this cannot happen here

This commit is contained in:
rlar 2015-02-28 19:41:31 +01:00
parent 548a1045a4
commit 1b7f3a9f2c
1 changed files with 0 additions and 9 deletions

View File

@ -116,15 +116,6 @@ INPevaluate(char **line, int *error, int gobble)
/* digit, so accumulate it. */
mantis = 10 * mantis + *here - '0';
expo1 = expo1 - 1;
if (*here == '\0') {
/* reached the end of token - done. */
if (gobble) {
FREE(token);
} else {
*line = here;
}
return (mantis * sign * pow(10.0, (double) expo1));
}
here++;
}
}