ICU-535 Fixed some compiler warnings

X-SVN-Rev: 3614
This commit is contained in:
George Rhoten 2001-02-12 20:52:49 +00:00
parent 16b8a6e0fb
commit 8e949b4dd0
2 changed files with 3 additions and 3 deletions

View File

@ -644,4 +644,4 @@ VectorOfInt* CollationElementIterator::makeReorderedBuffer(UChar colFirst,
return result;
}
*/
*/

View File

@ -48,8 +48,8 @@ CollationKey::CollationKey()
// Adopt bytes allocated with malloc
CollationKey::CollationKey(int32_t count, uint8_t *values)
: fBogus(FALSE), fBytes(values), fCount(count), fCapacity(count),
fHashCode(kInvalidHashCode)
: fBogus(FALSE), fCount(count), fCapacity(count),
fHashCode(kInvalidHashCode), fBytes(values)
{
}