ICU-986 Fixed AIX compiler error

X-SVN-Rev: 5006
This commit is contained in:
George Rhoten 2001-06-14 23:23:04 +00:00
parent fddff905b5
commit f622af73e1

View File

@ -430,7 +430,11 @@ ChoiceFormat::toPattern(UnicodeString& result) const
} else { } else {
result += dtos(fChoiceLimits[i], buf, status); result += dtos(fChoiceLimits[i], buf, status);
} }
result += fClosures[i] ? LESS_THAN : LESS_EQUAL; if (fClosures[i]) {
result += LESS_THAN;
} else {
result += LESS_EQUAL;
}
// Append fChoiceFormats[i], using quotes if there are special // Append fChoiceFormats[i], using quotes if there are special
// characters. Single quotes themselves must be escaped in // characters. Single quotes themselves must be escaped in
// either case. // either case.