Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions include/boost/decimal/detail/mul_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ BOOST_DECIMAL_FORCE_INLINE constexpr auto d64_mul_impl(T lhs_sig, U lhs_exp, boo
constexpr auto comp_value {detail::pow10(static_cast<unsigned_int128_type>(31))};

#ifdef BOOST_DECIMAL_DEBUG
std::cerr << "sig lhs: " << sig_lhs
<< "\nexp lhs: " << exp_lhs
<< "\nsig rhs: " << sig_rhs
<< "\nexp rhs: " << exp_rhs;
std::cerr << "sig lhs: " << lhs_sig
<< "\nexp lhs: " << lhs_exp
<< "\nsig rhs: " << rhs_sig
<< "\nexp rhs: " << rhs_exp;
#endif

bool sign {lhs_sign != rhs_sign};
Expand Down
Loading