You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 18, 2024. It is now read-only.
A possible enhancement would be to check for a parameter of 0.0 for the value
argument and then immediately set the str to "0" and return, similar to the NAN
check.
e.g. for the case:
"modp_dtoa2(0.0, str, n);"
The implementation may be better off being:
"size_t modp_dtoa2(double value, char * str, int prec) {
if (!(value == value)) { /* Test for NAN. */
str[0] = 'n'; str[1] = 'a'; str[2] = 'n'; str[3] = 0;
return (size_t) 3;
}
if (x = 0.0) { /* Test for 0.0. */
str[0] = '0'; str[1] = 0;
return (size_t) 1;
}
//... Rest of implementation as-is...
}
Original issue reported on code.google.com by [email protected] on 23 Jul 2014 at 12:31
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 23 Jul 2014 at 12:31The text was updated successfully, but these errors were encountered: