Skip to content

Commit f583002

Browse files
committed
Update components to used fixed width types
1 parent 4b4f25f commit f583002

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

include/boost/decimal/detail/components.hpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,15 @@ struct decimal_components
5353

5454
using decimal32_t_components = impl::decimal_components<std::uint32_t, std::int32_t>;
5555

56-
using decimal_fast32_t_components = impl::decimal_components<std::uint_fast32_t, std::int_fast32_t>;
56+
using decimal_fast32_t_components = impl::decimal_components<std::uint32_t, std::int32_t>;
5757

5858
using decimal64_t_components = impl::decimal_components<std::uint64_t, std::int32_t>;
5959

60+
using decimal64_fast64_t_components = impl::decimal_components<std::uint64_t, std::int32_t>;
61+
6062
using decimal128_t_components = impl::decimal_components<boost::int128::uint128_t, std::int32_t>;
6163

62-
using decimal_fast128_t_components = impl::decimal_components<boost::int128::uint128_t, std::int_fast32_t>;
64+
using decimal_fast128_t_components = impl::decimal_components<boost::int128::uint128_t, std::int32_t>;
6365

6466
} // namespace detail
6567
} // namespace decimal

0 commit comments

Comments
 (0)