File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ namespace decimal {
1919
2020namespace 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
You can’t perform that action at this time.
0 commit comments