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 101407c commit fe4305fCopy full SHA for fe4305f
test/test_big_uints.cpp
@@ -172,8 +172,13 @@ auto test_big_uints_mul() -> void
172
}
173
else
174
{
175
- const std::uint64_t dec_intern_rhs_64 = static_cast<std::uint64_t>(dec_intern_uint_rhs);
176
- const std::uint64_t boost_ctrl_rhs_64 = static_cast<std::uint64_t>(boost_ctrl_uint_rhs);
+ const auto dec_intern_rhs_64 =
+ static_cast<std::uint64_t>
177
+ (
178
+ static_cast<::boost::decimal::detail::uint128>(dec_intern_uint_rhs)
179
+ );
180
+
181
+ const auto boost_ctrl_rhs_64 = static_cast<std::uint64_t>(boost_ctrl_uint_rhs);
182
183
BOOST_TEST_EQ(dec_intern_rhs_64, boost_ctrl_rhs_64);
184
0 commit comments