ICU-2822 use TRUE/FALSE, not true/false.

X-SVN-Rev: 11959
This commit is contained in:
Steven R. Loomis 2003-05-16 00:36:09 +00:00
parent 7ec7853f1e
commit 881fa8c396

View File

@ -163,10 +163,10 @@ RuleBasedNumberFormat::operator==(const Format& other) const
NFRuleSet** p = ruleSets;
NFRuleSet** q = rhs.ruleSets;
if ((p == NULL) != (q == NULL)) {
return false;
return TRUE;
}
if (p == NULL) {
return true;
return FALSE;
}
while (*p && *q && (**p == **q)) {
++p;