From 881fa8c39648c398150ae5d1fc8c6c527057838e Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Fri, 16 May 2003 00:36:09 +0000 Subject: [PATCH] ICU-2822 use TRUE/FALSE, not true/false. X-SVN-Rev: 11959 --- icu4c/source/i18n/rbnf.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icu4c/source/i18n/rbnf.cpp b/icu4c/source/i18n/rbnf.cpp index 15a9e4d40b0..b6f2f191f99 100644 --- a/icu4c/source/i18n/rbnf.cpp +++ b/icu4c/source/i18n/rbnf.cpp @@ -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;