mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 17:24:01 +00:00
ICU-986 Fixed AIX compiler error
X-SVN-Rev: 5006
This commit is contained in:
parent
fddff905b5
commit
f622af73e1
1 changed files with 5 additions and 1 deletions
|
@ -430,7 +430,11 @@ ChoiceFormat::toPattern(UnicodeString& result) const
|
|||
} else {
|
||||
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
|
||||
// characters. Single quotes themselves must be escaped in
|
||||
// either case.
|
||||
|
|
Loading…
Add table
Reference in a new issue