mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-2699 Fix some compiler warnings
X-SVN-Rev: 12231
This commit is contained in:
parent
f4562fc9c5
commit
66873ee46d
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue