From 7a772275214a4884050e0ded965fc976dc10e503 Mon Sep 17 00:00:00 2001 From: Pavel Novikov Date: Thu, 18 Sep 2025 17:02:24 +0300 Subject: [PATCH] minor fix of forward declaration --- include/fast_float/fast_float.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/include/fast_float/fast_float.h b/include/fast_float/fast_float.h index e316f70..a190d7c 100644 --- a/include/fast_float/fast_float.h +++ b/include/fast_float/fast_float.h @@ -60,10 +60,8 @@ from_chars_advanced(UC const *first, UC const *last, T &value, */ FASTFLOAT_CONSTEXPR20 inline double integer_times_pow10(uint64_t mantissa, int decimal_exponent) noexcept; -FASTFLOAT_CONSTEXPR20 inline - typename std::enable_if::value, - double>::type - integer_times_pow10(int64_t mantissa, int decimal_exponent) noexcept; +FASTFLOAT_CONSTEXPR20 inline double +integer_times_pow10(int64_t mantissa, int decimal_exponent) noexcept; /** * from_chars for integer types.