Skip to content

Commit 6ff8f0c

Browse files
committed
Fix missing variable
1 parent df60370 commit 6ff8f0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boost/decimal/detail/i256.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ constexpr bool i256_sub(const u256& a, const u256& b, u256& res) noexcept
144144
{
145145
if (BOOST_DECIMAL_IS_CONSTANT_EVALUATED(lhs))
146146
{
147-
return impl::i256_sub_impl(a, b, result);
147+
return impl::i256_sub_impl(a, b, res);
148148
}
149149
else
150150
{

0 commit comments

Comments
 (0)