Skip to content

Commit 72b7fb5

Browse files
committed
Update 128-bit type
1 parent 020b87d commit 72b7fb5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/modules/ROOT/pages/conversions.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ namespace decimal {
1919
2020
namespace detail {
2121
22-
struct uint128
22+
struct uint128_t
2323
{
24-
std::uint64_t hi;
25-
std::uint64_t lo;
24+
std::uint64_t high;
25+
std::uint64_t low;
2626
};
2727
2828
} // namespace detail
@@ -56,9 +56,9 @@ constexpr decimal128_t from_bid_d128(unsigned __int128 bits) noexcept;
5656
5757
#endif // BOOST_DECIMAL_HAS_INT128
5858
59-
constexpr detail::uint128 to_bid_d128f(decimal_fast128_t val) noexcept;
59+
constexpr detail::uint128_t to_bid_d128f(decimal_fast128_t val) noexcept;
6060
61-
constexpr decimal128_t from_bid_d128f(detail::uint128 bits) noexcept;
61+
constexpr decimal128_t from_bid_d128f(detail::uint128_t bits) noexcept;
6262
6363
#ifdef BOOST_DECIMAL_HAS_INT128
6464

0 commit comments

Comments
 (0)