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.
2 parents 4554989 + d2105e4 commit 489e13bCopy full SHA for 489e13b
include/boost/decimal/detail/remove_trailing_zeros.hpp
@@ -87,7 +87,7 @@ constexpr auto remove_trailing_zeros(std::uint64_t n) noexcept -> remove_trailin
87
s = s * 2U + static_cast<std::size_t>(b);
88
n = b ? r : n;
89
90
- r = rotr<64>(n * UINT32_C(14757395258967641293), 1);
+ r = rotr<64>(n * UINT64_C(14757395258967641293), 1);
91
b = r < UINT64_C(1844674407370955162);
92
93
0 commit comments