mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-2203 Fix for HP and other compilers
X-SVN-Rev: 11311
This commit is contained in:
parent
6ed78276e1
commit
bb9e366b13
1 changed files with 4 additions and 3 deletions
|
@ -300,7 +300,8 @@ IntlTestNumberFormatAPI::testRegistration()
|
|||
UNumberFormat* uf3 = unum_open(UNUM_CURRENCY, NULL, 0, SRC_LOC.getName(),NULL, &status);
|
||||
UNumberFormat* uf4 = unum_open(UNUM_DEFAULT, NULL, 0, SRC_LOC.getName(), NULL, &status);
|
||||
|
||||
for (const UnicodeString* res = locs->snext(status); res; res = locs->snext(status)) {
|
||||
const UnicodeString* res;
|
||||
for (res = locs->snext(status); res; res = locs->snext(status)) {
|
||||
logln(*res); // service is still in synch
|
||||
}
|
||||
|
||||
|
@ -373,12 +374,12 @@ IntlTestNumberFormatAPI::testRegistration()
|
|||
delete f1;
|
||||
delete f0;
|
||||
|
||||
for (const UnicodeString* res = locs->snext(status); res; res = locs->snext(status)) {
|
||||
for (res = locs->snext(status); res; res = locs->snext(status)) {
|
||||
errln(*res); // service should be out of synch
|
||||
}
|
||||
|
||||
locs->reset(status); // now in synch again, we hope
|
||||
for (const UnicodeString* res = locs->snext(status); res; res = locs->snext(status)) {
|
||||
for (res = locs->snext(status); res; res = locs->snext(status)) {
|
||||
logln(*res);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue