From 3dda41c0cc0adb20a9b99faa7adc75a81f439254 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Tue, 9 Oct 2001 22:21:01 +0000 Subject: [PATCH] ICU-900 Fixed some compiler warnings. X-SVN-Rev: 6136 --- icu4c/source/i18n/strmatch.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/icu4c/source/i18n/strmatch.cpp b/icu4c/source/i18n/strmatch.cpp index 7c2de18b64..7081ced4cd 100644 --- a/icu4c/source/i18n/strmatch.cpp +++ b/icu4c/source/i18n/strmatch.cpp @@ -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) +{ } /**