mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-241 declare the index of the loop outside the for().
X-SVN-Rev: 1760
This commit is contained in:
parent
32e5cad58f
commit
edde8164ec
1 changed files with 2 additions and 1 deletions
|
@ -38,8 +38,9 @@ TestChoiceFormat::TestSimpleExample( void )
|
|||
UErrorCode status;
|
||||
FieldPosition fpos(0);
|
||||
Formattable f;
|
||||
int32_t ix;
|
||||
//for (double i = 0.0; i <= 8.0; ++i) {
|
||||
for (int32_t ix = 0; ix <= 8; ++ix) {
|
||||
for (ix = 0; ix <= 8; ++ix) {
|
||||
double i = ix; //nos
|
||||
status = U_ZERO_ERROR;
|
||||
fpos = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue