Skip to content

Commit 0168080

Browse files
committed
Fix typo and missing new header
1 parent bb32d6d commit 0168080

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

include/boost/decimal/decimal64_fast.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include <boost/decimal/detail/ryu/ryu_generic_128.hpp>
2020
#include <boost/decimal/detail/promotion.hpp>
2121
#include <boost/decimal/detail/cmath/next.hpp>
22+
#include <boost/decimal/detail/components.hpp>
2223

2324
#ifndef BOOST_DECIMAL_BUILD_MODULE
2425

include/boost/decimal/detail/components.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ using decimal_fast32_t_components = impl::decimal_components<std::uint32_t, std:
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>;
60+
using decimal_fast64_t_components = impl::decimal_components<std::uint64_t, std::int32_t>;
6161

6262
using decimal128_t_components = impl::decimal_components<boost::int128::uint128_t, std::int32_t>;
6363

0 commit comments

Comments
 (0)