Skip to content

Commit 98ec135

Browse files
committed
Remove components struct from wrong location
1 parent f583002 commit 98ec135

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

include/boost/decimal/decimal64_fast.hpp

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,6 @@ BOOST_DECIMAL_CONSTEXPR_VARIABLE auto d64_fast_inf = std::numeric_limits<std::ui
3636
BOOST_DECIMAL_CONSTEXPR_VARIABLE auto d64_fast_qnan = std::numeric_limits<std::uint_fast64_t>::max() - 2;
3737
BOOST_DECIMAL_CONSTEXPR_VARIABLE auto d64_fast_snan = std::numeric_limits<std::uint_fast64_t>::max() - 1;
3838

39-
struct decimal_fast64_t_components
40-
{
41-
using significand_type = std::uint_fast64_t;
42-
using biased_exponent_type = std::int_fast32_t;
43-
44-
significand_type sig;
45-
biased_exponent_type exp;
46-
bool sign;
47-
};
48-
4939
} // namespace detail
5040

5141
BOOST_DECIMAL_EXPORT class decimal_fast64_t final

0 commit comments

Comments
 (0)