Skip to content

Commit 59da568

Browse files
committed
type usage fix.
1 parent dad07cc commit 59da568

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/fast_float/decimal_to_binary.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ constexpr fastfloat_really_inline am_pow_t power(am_pow_t const q) noexcept {
7373
// for significant digits already multiplied by 10 ** q.
7474
template <typename binary>
7575
fastfloat_really_inline FASTFLOAT_CONSTEXPR14 adjusted_mantissa
76-
compute_error_scaled(am_pow_t q, am_mant_t w, am_bits_t lz) noexcept {
76+
compute_error_scaled(am_pow_t q, am_mant_t w, limb_t lz) noexcept {
7777
auto const hilz = static_cast<am_bits_t>((w >> 63) ^ 1);
7878
adjusted_mantissa answer;
7979
answer.mantissa = w << hilz;

0 commit comments

Comments
 (0)