From 21a1c533810b19c73fa06a0c39b648526917c731 Mon Sep 17 00:00:00 2001 From: Junekey Jeon Date: Wed, 12 Jan 2022 16:47:55 -0800 Subject: [PATCH] Fix typo --- include/fmt/format-inl.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/fmt/format-inl.h b/include/fmt/format-inl.h index 1460294c..442ec3cf 100644 --- a/include/fmt/format-inl.h +++ b/include/fmt/format-inl.h @@ -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()};