mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-31 09:08:08 -07:00
12 lines
538 B
Diff
12 lines
538 B
Diff
--- a/src/libdivide.h 2026-04-08 13:50:17.561322672 +0200
|
|
+++ b/src/libdivide.h 2026-04-08 13:53:07.129354956 +0200
|
|
@@ -3158,7 +3158,7 @@
|
|
T recover() const { return div.recover(); }
|
|
|
|
bool operator==(const divider<T, ALGO> &other) const {
|
|
- return div.denom.magic == other.denom.magic && div.denom.more == other.denom.more;
|
|
+ return div.denom.magic == other.div.denom.magic && div.denom.more == other.div.denom.more;
|
|
}
|
|
|
|
bool operator!=(const divider<T, ALGO> &other) const { return !(*this == other); }
|