From 0ba4e20bc489fb59d11b31e2a89a0d711a3550c0 Mon Sep 17 00:00:00 2001 From: IRainman Date: Mon, 5 May 2025 19:49:53 +0300 Subject: [PATCH] lint --- include/fast_float/float_common.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/fast_float/float_common.h b/include/fast_float/float_common.h index e320351..048aed5 100644 --- a/include/fast_float/float_common.h +++ b/include/fast_float/float_common.h @@ -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]; }