diff --git a/include/fast_float/fast_float.h b/include/fast_float/fast_float.h index 1d13815..08a1a44 100644 --- a/include/fast_float/fast_float.h +++ b/include/fast_float/fast_float.h @@ -59,9 +59,11 @@ from_chars_advanced(UC const *first, UC const *last, T &value, * `new` or `malloc`). */ FASTFLOAT_CONSTEXPR20 inline double -integer_times_pow10(uint64_t const mantissa, int const decimal_exponent) noexcept; +integer_times_pow10(uint64_t const mantissa, + int const decimal_exponent) noexcept; FASTFLOAT_CONSTEXPR20 inline double -integer_times_pow10(int64_t const mantissa, int const decimal_exponent) noexcept; +integer_times_pow10(int64_t const mantissa, + int const decimal_exponent) noexcept; /** * from_chars for integer types. diff --git a/include/fast_float/parse_number.h b/include/fast_float/parse_number.h index c132ff2..8a310ce 100644 --- a/include/fast_float/parse_number.h +++ b/include/fast_float/parse_number.h @@ -254,8 +254,7 @@ clinger_fast_path_impl(uint64_t const mantissa, int64_t const exponent, return true; } #endif - value = T(mantissa) * - binary_format::exact_power_of_ten(exponent); + value = T(mantissa) * binary_format::exact_power_of_ten(exponent); #ifndef FASTFLOAT_ONLY_POSITIVE_C_NUMBER_WO_INF_NAN if (is_negative) { value = -value;