ICU-900 Fixed some compiler warnings.
X-SVN-Rev: 6136
This commit is contained in:
parent
c8712487d3
commit
3dda41c0cc
@ -18,14 +18,17 @@ StringMatcher::StringMatcher(const UnicodeString& theString,
|
||||
UBool isSeg,
|
||||
const TransliterationRuleData& theData) :
|
||||
data(theData),
|
||||
isSegment(isSeg) {
|
||||
isSegment(isSeg)
|
||||
{
|
||||
theString.extractBetween(start, limit, pattern);
|
||||
}
|
||||
|
||||
StringMatcher::StringMatcher(const StringMatcher& o) :
|
||||
UnicodeMatcher(o),
|
||||
pattern(o.pattern),
|
||||
isSegment(o.isSegment),
|
||||
data(o.data) {
|
||||
data(o.data),
|
||||
isSegment(o.isSegment)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user