| 2909 | } |
| 2910 | |
| 2911 | fastfloat_really_inline FASTFLOAT_CONSTEXPR20 |
| 2912 | void round_up_bigint(bigint& big, size_t& count) noexcept { |
| 2913 | // need to round-up the digits, but need to avoid rounding |
| 2914 | // ....9999 to ...10000, which could cause a false halfway point. |
| 2915 | add_native(big, 10, 1); |
| 2916 | count++; |
| 2917 | } |
| 2918 | |
| 2919 | // parse the significant digits into a big integer |
| 2920 | inline FASTFLOAT_CONSTEXPR20 |
no test coverage detected