mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-10 07:39:16 +00:00
ICU-900 Fixed some compiler warnings.
X-SVN-Rev: 6136
This commit is contained in:
parent
c8712487d3
commit
3dda41c0cc
1 changed files with 6 additions and 3 deletions
|
@ -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…
Add table
Reference in a new issue