| 3360 | } |
| 3361 | |
| 3362 | fastfloat_really_inline FASTFLOAT_CONSTEXPR20 void |
| 3363 | round_up_bigint(bigint &big, size_t &count) noexcept { |
| 3364 | // need to round-up the digits, but need to avoid rounding |
| 3365 | // ....9999 to ...10000, which could cause a false halfway point. |
| 3366 | add_native(big, 10, 1); |
| 3367 | count++; |
| 3368 | } |
| 3369 | |
| 3370 | // parse the significant digits into a big integer |
| 3371 | template <typename UC> |
no test coverage detected