diff --git a/libc/src/__support/float_to_string.h b/libc/src/__support/float_to_string.h --- a/libc/src/__support/float_to_string.h +++ b/libc/src/__support/float_to_string.h @@ -130,8 +130,8 @@ // calculations. // The formula being used looks more like this: // floor(10^(9*(-i)) * 2^(c_0 + (-e))) % (10^9 * 2^c_0) -constexpr inline cpp::UInt -get_table_negative(int exponent, size_t i, const size_t constant) { +inline cpp::UInt get_table_negative(int exponent, size_t i, + const size_t constant) { constexpr size_t INT_SIZE = 1024; int shift_amount = constant - exponent; cpp::UInt num(1);