Spelling
This commit is contained in:
parent
f233b56cdd
commit
78b5944313
@ -1062,7 +1062,7 @@ void fallback_format(Double d, int num_digits, buffer<char>& buf, int& exp10) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Generate the given number of digits up to the maximum possible number of
|
// Generate the given number of digits up to the maximum possible number of
|
||||||
// significant digits in a IEEE754 double.
|
// significant digits in an IEEE754 double.
|
||||||
const int max_double_digits = 767;
|
const int max_double_digits = 767;
|
||||||
if (num_digits > max_double_digits) num_digits = max_double_digits;
|
if (num_digits > max_double_digits) num_digits = max_double_digits;
|
||||||
exp10 -= num_digits - 1;
|
exp10 -= num_digits - 1;
|
||||||
@ -1102,7 +1102,7 @@ void fallback_format(Double d, int num_digits, buffer<char>& buf, int& exp10) {
|
|||||||
|
|
||||||
// Formats value using the Grisu algorithm
|
// Formats value using the Grisu algorithm
|
||||||
// (https://www.cs.tufts.edu/~nr/cs257/archive/florian-loitsch/printf.pdf)
|
// (https://www.cs.tufts.edu/~nr/cs257/archive/florian-loitsch/printf.pdf)
|
||||||
// if T is a IEEE754 binary32 or binary64 and snprintf otherwise.
|
// if T is an IEEE754 binary32 or binary64 and snprintf otherwise.
|
||||||
template <typename T>
|
template <typename T>
|
||||||
int format_float(T value, int precision, float_specs specs, buffer<char>& buf) {
|
int format_float(T value, int precision, float_specs specs, buffer<char>& buf) {
|
||||||
static_assert(!std::is_same<T, float>::value, "");
|
static_assert(!std::is_same<T, float>::value, "");
|
||||||
|
Loading…
Reference in New Issue
Block a user