forked from fmtlib/fmt
Fix typo
This commit is contained in:
committed by
Victor Zverovich
parent
04eea0f0a8
commit
21a1c53381
@ -881,7 +881,8 @@ inline uint64_t umul96_upper64(uint32_t x, uint64_t y) FMT_NOEXCEPT {
|
||||
|
||||
// Computes lower 128 bits of multiplication of a 64-bit unsigned integer and a
|
||||
// 128-bit unsigned integer.
|
||||
inline uint64_t umul192_lower128(uint64_t x, uint128_wrapper y) FMT_NOEXCEPT {
|
||||
inline uint128_wrapper umul192_lower128(uint64_t x,
|
||||
uint128_wrapper y) FMT_NOEXCEPT {
|
||||
uint64_t high = x * y.high();
|
||||
uint128_wrapper high_low = umul128(x, y.low());
|
||||
return {high + high_low.high(), high_low.low()};
|
||||
|
Reference in New Issue
Block a user