Skip to content

Commit ec39f78

Browse files
committed
Fix copy-paste issue
1 parent e2ba0dd commit ec39f78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boost/int128/cstdlib.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ constexpr i128div_t div(const int128_t x, const int128_t y) noexcept
7676
const auto unsigned_res {div(abs_lhs, abs_rhs)};
7777

7878

79-
const auto negative_quot {(lhs.high < 0) != (rhs.high < 0)};
79+
const auto negative_quot {(x.high < 0) != (y.high < 0)};
8080
#if defined(_MSC_VER) && !defined(__GNUC__)
8181
const auto negative_rem {static_cast<bool>(x.high < 0)};
8282
#else

0 commit comments

Comments
 (0)