mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-16 18:25:57 +00:00
ICU-11276 One more attempt at fixing test failure.
This commit is contained in:
parent
d717184948
commit
af091cc15a
2 changed files with 4 additions and 2 deletions
|
@ -1161,7 +1161,8 @@ bool DecimalQuantity::operator==(const DecimalQuantity& other) const {
|
|||
&& lOptPos == other.lOptPos
|
||||
&& lReqPos == other.lReqPos
|
||||
&& rReqPos == other.rReqPos
|
||||
&& rOptPos == other.rOptPos;
|
||||
&& rOptPos == other.rOptPos
|
||||
&& isApproximate == other.isApproximate;
|
||||
if (!basicEquals) {
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -1034,7 +1034,8 @@ public abstract class DecimalQuantity_AbstractBCD implements DecimalQuantity {
|
|||
&& lOptPos == _other.lOptPos
|
||||
&& lReqPos == _other.lReqPos
|
||||
&& rReqPos == _other.rReqPos
|
||||
&& rOptPos == _other.rOptPos;
|
||||
&& rOptPos == _other.rOptPos
|
||||
&& isApproximate == _other.isApproximate;
|
||||
if (!basicEquals) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue