ICU-2822 use TRUE/FALSE, not true/false.
X-SVN-Rev: 11959
This commit is contained in:
parent
7ec7853f1e
commit
881fa8c396
@ -163,10 +163,10 @@ RuleBasedNumberFormat::operator==(const Format& other) const
|
|||||||
NFRuleSet** p = ruleSets;
|
NFRuleSet** p = ruleSets;
|
||||||
NFRuleSet** q = rhs.ruleSets;
|
NFRuleSet** q = rhs.ruleSets;
|
||||||
if ((p == NULL) != (q == NULL)) {
|
if ((p == NULL) != (q == NULL)) {
|
||||||
return false;
|
return TRUE;
|
||||||
}
|
}
|
||||||
if (p == NULL) {
|
if (p == NULL) {
|
||||||
return true;
|
return FALSE;
|
||||||
}
|
}
|
||||||
while (*p && *q && (**p == **q)) {
|
while (*p && *q && (**p == **q)) {
|
||||||
++p;
|
++p;
|
||||||
|
Loading…
Reference in New Issue
Block a user