mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-3222 Fix some compiler warnings.
X-SVN-Rev: 13907
This commit is contained in:
parent
79d6c8fd5e
commit
18177bc8a7
1 changed files with 1 additions and 1 deletions
|
@ -372,7 +372,7 @@ static void setFromString(DigitList& dl, const char* str) {
|
|||
char c;
|
||||
UBool decimalSet = FALSE;
|
||||
dl.clear();
|
||||
while (c = *str++) {
|
||||
while ((c = *str++)) {
|
||||
if (c == '-') {
|
||||
dl.fIsPositive = FALSE;
|
||||
} else if (c == '+') {
|
||||
|
|
Loading…
Add table
Reference in a new issue