Skip to content

Commit 2d65744

Browse files
authored
Merge pull request #327 from toughengineer/int_multiplication_by_power_of_10
Minor fix of forward declaration
2 parents e20c952 + 7a77227 commit 2d65744

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

include/fast_float/fast_float.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,8 @@ from_chars_advanced(UC const *first, UC const *last, T &value,
6060
*/
6161
FASTFLOAT_CONSTEXPR20 inline double
6262
integer_times_pow10(uint64_t mantissa, int decimal_exponent) noexcept;
63-
FASTFLOAT_CONSTEXPR20 inline
64-
typename std::enable_if<is_supported_float_type<double>::value,
65-
double>::type
66-
integer_times_pow10(int64_t mantissa, int decimal_exponent) noexcept;
63+
FASTFLOAT_CONSTEXPR20 inline double
64+
integer_times_pow10(int64_t mantissa, int decimal_exponent) noexcept;
6765

6866
/**
6967
* from_chars for integer types.

0 commit comments

Comments
 (0)