ICU-900 Fixed some compiler warnings.

X-SVN-Rev: 6879
This commit is contained in:
George Rhoten 2001-11-14 02:51:50 +00:00
parent d685852853
commit ef87bd06d5
4 changed files with 10 additions and 9 deletions

View file

@ -481,7 +481,7 @@ void
DateFormatSymbols::initField(UnicodeString **field, int32_t& length, const UChar *data, LastResortSize numStr, LastResortSize strLen, UErrorCode &status) {
if (U_SUCCESS(status)) {
length = numStr;
*field = new UnicodeString[numStr];
*field = new UnicodeString[(size_t)numStr];
if (*field) {
for(int32_t i = 0; i<length; i++) {
*(*(field)+i) = data+(i*((int32_t)strLen));

View file

@ -222,7 +222,7 @@ const UChar testCases[][4] =
#ifndef INCLUDE_CALLCOLL_C
static void TestJitterbug1098();
static void TestJitterbug1098(void);
void addAllCollTest(TestNode** root)
{
@ -797,17 +797,16 @@ TestInvalidRules(){
}
}
}
static void
TestJitterbug1098(){
UChar rule[1000];
UCollator* c1 = NULL;
UErrorCode status = U_ZERO_ERROR;
UParseError parseError;
int32_t length = 1000;
char preContext[200]={0};
char postContext[200]={0};
const UChar* retRule=NULL;
int i=0;
int i=0;
const char* rules[] = {
"&''<\\\\",
"&\\'<\\\\",
@ -816,7 +815,7 @@ TestJitterbug1098(){
'\0'
};
const UCollationResult results[] = {
const UCollationResult results1098[] = {
UCOL_LESS,
UCOL_LESS,
UCOL_LESS,
@ -844,7 +843,7 @@ TestJitterbug1098(){
}
X[0] = input[i][0];
Y[0] = input[i][1];
doTest(c1,X,Y,results[i]);
doTest(c1,X,Y,results1098[i]);
ucol_close(c1);
}
}

View file

@ -73,7 +73,9 @@ printUnicode(const UChar *s, int32_t length, const UBiDiLevel *levels);
/* regression tests ---------------------------------------------------------*/
extern void
void addComplexTest(TestNode** root);
void
addComplexTest(TestNode** root) {
addTest(root, doBiDiTest, "complex/bidi");
addTest(root, doInverseBiDiTest, "complex/bidi/inverse");

View file

@ -170,7 +170,7 @@ void NormalizerConformanceTest::TestConformance(void) {
}
fields[0]=fields[1]=fields[2]=fields[3]=fields[4].setTo(c);
sprintf(lineBuf, "not mentioned code point U+%04lx", c);
sprintf(lineBuf, "not mentioned code point U+%04lx", (long)c);
if (checkConformance(fields, UnicodeString(lineBuf, ""))) {
++passCount;