Skip to content

Commit 8f7074a

Browse files
committed
Update defaults in docs
1 parent 24b5d9e commit 8f7074a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

doc/modules/ROOT/pages/conversions.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ constexpr decimal128_t from_bid_d128f(unsigned __int128 bits) noexcept;
6969
template <typename T>
7070
constexpr auto to_bid(T val) noexcept;
7171
72-
template <typename T = decimal_fast32_t>
72+
template <typename T = decimal32_t>
7373
constexpr T from_bid(std::uint32_t bits) noexcept;
7474
75-
template <typename T = decimal_fast64_t>
75+
template <typename T = decimal64_t>
7676
constexpr T from_bid(std::uint64_t bits) noexcept;
7777
7878
template <typename T = decimal128_t>
@@ -95,17 +95,17 @@ constexpr detail::uint128 to_dpd_d128f(decimal_fast128_t val) noexcept;
9595
template <typename T>
9696
constexpr auto to_dpd(T val) noexcept;
9797
98-
template <typename T = decimal_fast32_t>
98+
template <typename T = decimal32_t>
9999
constexpr T from_dpd(std::uint32_t bits) noexcept;
100100
101-
template <typename T = decimal_fast64_t>
101+
template <typename T = decimal64_t>
102102
constexpr T from_dpd(std::uint64_t bits) noexcept;
103103
104-
template <typename T = decimal_fast128_t>
104+
template <typename T = decimal128_t>
105105
constexpr 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>
109109
constexpr T from_dpd(unsigned __int128 bits) noexcept;
110110
#endif
111111

0 commit comments

Comments
 (0)