mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-10 07:39:16 +00:00
ICU-3222 fix compiler warning
X-SVN-Rev: 14311
This commit is contained in:
parent
9e3dba41a9
commit
52237d9d62
1 changed files with 2 additions and 2 deletions
|
@ -211,7 +211,7 @@ void StringMatcher::addMatchSetTo(UnicodeSet& toUnionTo) const {
|
|||
int32_t StringMatcher::replace(Replaceable& text,
|
||||
int32_t start,
|
||||
int32_t limit,
|
||||
int32_t& cursor) {
|
||||
int32_t& /*cursor*/) {
|
||||
|
||||
int32_t outLen = 0;
|
||||
|
||||
|
@ -235,7 +235,7 @@ int32_t StringMatcher::replace(Replaceable& text,
|
|||
* UnicodeReplacer API
|
||||
*/
|
||||
UnicodeString& StringMatcher::toReplacerPattern(UnicodeString& rule,
|
||||
UBool escapeUnprintable) const {
|
||||
UBool /*escapeUnprintable*/) const {
|
||||
// assert(segmentNumber > 0);
|
||||
rule.truncate(0);
|
||||
rule.append((UChar)0x0024 /*$*/);
|
||||
|
|
Loading…
Add table
Reference in a new issue