Remove the fix: Use this commit to show that tests fail without the fix

This commit is contained in:
Ed Hennis
2026-06-04 19:51:36 -04:00
parent cdcae49fdb
commit 8b6b075397

View File

@@ -434,11 +434,6 @@ public:
if (l.exponent_ < r.exponent_)
return !lneg;
// If equal signs and exponents, compare mantissas.
if (lneg)
// If negative, the operator is reversed.
return l.mantissa_ > r.mantissa_;
return l.mantissa_ < r.mantissa_;
}