We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f583002 commit 98ec135Copy full SHA for 98ec135
include/boost/decimal/decimal64_fast.hpp
@@ -36,16 +36,6 @@ BOOST_DECIMAL_CONSTEXPR_VARIABLE auto d64_fast_inf = std::numeric_limits<std::ui
36
BOOST_DECIMAL_CONSTEXPR_VARIABLE auto d64_fast_qnan = std::numeric_limits<std::uint_fast64_t>::max() - 2;
37
BOOST_DECIMAL_CONSTEXPR_VARIABLE auto d64_fast_snan = std::numeric_limits<std::uint_fast64_t>::max() - 1;
38
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
49
} // namespace detail
50
51
BOOST_DECIMAL_EXPORT class decimal_fast64_t final
0 commit comments