mirror of
https://github.com/fastfloat/fast_float.git
synced 2025-12-06 08:46:49 +08:00
Merge pull request #327 from toughengineer/int_multiplication_by_power_of_10
Minor fix of forward declaration
This commit is contained in:
commit
2d6574483d
@ -60,10 +60,8 @@ from_chars_advanced(UC const *first, UC const *last, T &value,
|
|||||||
*/
|
*/
|
||||||
FASTFLOAT_CONSTEXPR20 inline double
|
FASTFLOAT_CONSTEXPR20 inline double
|
||||||
integer_times_pow10(uint64_t mantissa, int decimal_exponent) noexcept;
|
integer_times_pow10(uint64_t mantissa, int decimal_exponent) noexcept;
|
||||||
FASTFLOAT_CONSTEXPR20 inline
|
FASTFLOAT_CONSTEXPR20 inline double
|
||||||
typename std::enable_if<is_supported_float_type<double>::value,
|
integer_times_pow10(int64_t mantissa, int decimal_exponent) noexcept;
|
||||||
double>::type
|
|
||||||
integer_times_pow10(int64_t mantissa, int decimal_exponent) noexcept;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* from_chars for integer types.
|
* from_chars for integer types.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user