ICU-2118 Don't use false. Use FALSE

X-SVN-Rev: 10727
This commit is contained in:
George Rhoten 2002-12-18 16:21:40 +00:00
parent f614001f33
commit 55f52e6854

View file

@ -2155,7 +2155,7 @@ SearchIterator * TestSearch::safeClone() const
UBool TestSearch::operator!=(const TestSearch &that) const
{
if (SearchIterator::operator !=(that)) {
return false;
return FALSE;
}
return m_offset_ != that.m_offset_ || m_pattern_ != that.m_pattern_;
}