From 384fcec12dac0e2e987d99a12d65560e8991a4fd Mon Sep 17 00:00:00 2001 From: IRainman Date: Thu, 18 Sep 2025 22:57:06 +0300 Subject: [PATCH] # clang format --- include/fast_float/fast_float.h | 6 ++++-- include/fast_float/parse_number.h | 3 +-- 2 files changed, 5 insertions(+), 4 deletions(-) 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;