ICU-535 Fixed some compiler warnings.

X-SVN-Rev: 3142
This commit is contained in:
George Rhoten 2000-12-05 21:29:55 +00:00
parent 53511a250b
commit 12548e44b1

View File

@ -332,9 +332,9 @@ void TestMessageFormat::sample()
}
UnicodeString abc("abc");
UnicodeString def("def");
Formattable testArgs[] = { abc, def };
Formattable testArgs1[] = { abc, def };
FieldPosition fieldpos(0);
it_out << form->toPattern(buffer1) << "; " << form->format(testArgs, 2, buffer2, fieldpos, success) << endl;
it_out << form->toPattern(buffer1) << "; " << form->format(testArgs1, 2, buffer2, fieldpos, success) << endl;
delete form;
}