mirror of
https://github.com/fastfloat/fast_float.git
synced 2026-09-14 22:52:47 +08:00
constexpr fix
This commit is contained in:
parent
a4d25ebe28
commit
7c82411fd6
@ -634,8 +634,8 @@ fastfloat_really_inline constexpr uint64_t emulu_generic(uint32_t x,
|
||||
return x * static_cast<uint64_t>(y);
|
||||
}
|
||||
|
||||
fastfloat_really_inline uint64_t umul128_generic(uint64_t ab, uint64_t cd,
|
||||
uint64_t &hi) noexcept {
|
||||
fastfloat_really_inline constexpr uint64_t
|
||||
umul128_generic(uint64_t ab, uint64_t cd, uint64_t &hi) noexcept {
|
||||
auto ab_shifted = static_cast<uint32_t>(ab >> 32);
|
||||
auto cd_shifted = static_cast<uint32_t>(cd >> 32);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user