ICU-2699 Fix some compiler warnings

X-SVN-Rev: 12231
This commit is contained in:
George Rhoten 2003-06-02 23:10:10 +00:00
parent f4562fc9c5
commit 66873ee46d

View file

@ -2172,8 +2172,8 @@ RBBIWordMonkey::RBBIWordMonkey() {
fMungedPositions = NULL;
fOrigPositions = NULL;
fGCFMatcher = new RegexMatcher("\\X(?:\\p{Format}\\p{Grapheme_Extend}*)*", NULL, status);
fGCMatcher = new RegexMatcher("\\X", NULL, status);
fGCFMatcher = new RegexMatcher("\\X(?:\\p{Format}\\p{Grapheme_Extend}*)*", 0, status);
fGCMatcher = new RegexMatcher("\\X", 0, status);
if (U_FAILURE(status)) {
deferredStatus = status;