ICU-5170 Fix a compiler warning.

X-SVN-Rev: 19613
This commit is contained in:
George Rhoten 2006-05-05 03:40:26 +00:00
parent 47da668e46
commit e1412ad342

View File

@ -177,7 +177,7 @@ MutableTrieDictionary::addWord( const UChar *word,
matched = search(fIter, length, NULL, count, 0, parent, pMatched);
while (matched++ < length) {
UChar uc = utext_next32(fIter); // TODO: supplemetary support?
UChar32 uc = utext_next32(fIter); // TODO: supplemetary support?
U_ASSERT(uc != U_SENTINEL);
TernaryNode *newNode = new TernaryNode(uc);
if (newNode == NULL) {