mirror of
https://github.com/lemire/fast_double_parser.git
synced 2025-04-03 20:04:57 +00:00
Fix for issue 23.
This commit is contained in:
parent
aae457d607
commit
04437c1736
2 changed files with 13 additions and 3 deletions
|
@ -1140,12 +1140,11 @@ really_inline bool parse_number_base(const char *p, double *outDouble) {
|
|||
++p;
|
||||
}
|
||||
while (is_integer(*p)) {
|
||||
if (exp_number > 0x100000000) { // we need to check for overflows
|
||||
if (exp_number < 0x100000000) { // we need to check for overflows
|
||||
// we refuse to parse this
|
||||
return false;
|
||||
exp_number = 10 * exp_number + digit;
|
||||
}
|
||||
digit = *p - '0';
|
||||
exp_number = 10 * exp_number + digit;
|
||||
++p;
|
||||
}
|
||||
exponent += (neg_exp ? -exp_number : exp_number);
|
||||
|
|
|
@ -237,6 +237,16 @@ void issue13() {
|
|||
std::cout << "zero maps to zero" << std::endl;
|
||||
}
|
||||
|
||||
|
||||
void issue23() {
|
||||
std::string a = "0e+42949672970";
|
||||
double x;
|
||||
bool ok = fast_double_parser::parse_number(a.c_str(), &x);
|
||||
if(!ok) throw std::runtime_error("could not parse zero.");
|
||||
if(x != 0) throw std::runtime_error("zero does not map to zero.");
|
||||
std::cout << "zero maps to zero" << std::endl;
|
||||
}
|
||||
|
||||
int main() {
|
||||
const int evl_method = FLT_EVAL_METHOD;
|
||||
printf("FLT_EVAL_METHOD = %d\n", evl_method);
|
||||
|
@ -244,6 +254,7 @@ int main() {
|
|||
if(!is_pow_correct) {
|
||||
printf("It appears that your system has a bad pow function.\n");
|
||||
}
|
||||
issue23();
|
||||
|
||||
issue13();
|
||||
unit_tests();
|
||||
|
|
Loading…
Add table
Reference in a new issue