This commit is contained in:
IRainman 2025-05-05 19:49:53 +03:00
parent 5356317356
commit 0ba4e20bc4

View File

@ -1206,7 +1206,8 @@ max_digits_u64(uint_fast8_t base) noexcept {
// If a u64 is exactly max_digits_u64() in length, this is
// the value below which it has definitely overflowed.
fastfloat_really_inline constexpr uint64_t min_safe_u64(uint_fast8_t base) noexcept {
fastfloat_really_inline constexpr uint64_t
min_safe_u64(uint_fast8_t base) noexcept {
return int_luts<>::min_safe_u64[base - 2];
}