@@ -69,10 +69,10 @@ constexpr decimal128_t from_bid_d128f(unsigned __int128 bits) noexcept;
6969template <typename T>
7070constexpr auto to_bid(T val) noexcept;
7171
72- template <typename T = decimal_fast32_t >
72+ template <typename T = decimal32_t >
7373constexpr T from_bid(std::uint32_t bits) noexcept;
7474
75- template <typename T = decimal_fast64_t >
75+ template <typename T = decimal64_t >
7676constexpr T from_bid(std::uint64_t bits) noexcept;
7777
7878template <typename T = decimal128_t>
@@ -95,17 +95,17 @@ constexpr detail::uint128 to_dpd_d128f(decimal_fast128_t val) noexcept;
9595template <typename T>
9696constexpr auto to_dpd(T val) noexcept;
9797
98- template <typename T = decimal_fast32_t >
98+ template <typename T = decimal32_t >
9999constexpr T from_dpd(std::uint32_t bits) noexcept;
100100
101- template <typename T = decimal_fast64_t >
101+ template <typename T = decimal64_t >
102102constexpr T from_dpd(std::uint64_t bits) noexcept;
103103
104- template <typename T = decimal_fast128_t >
104+ template <typename T = decimal128_t >
105105constexpr T from_dpd(detail::uint128 bits) noexcept;
106106
107107#ifdef BOOST_DECIMAL_HAS_INT128
108- template <typename T = decimal_fast128_t >
108+ template <typename T = decimal128_t >
109109constexpr T from_dpd(unsigned __int128 bits) noexcept;
110110#endif
111111
0 commit comments