From 257637d6008efc5ed81f212f83504e73c5b7de25 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Thu, 4 Dec 2003 02:05:39 +0000 Subject: [PATCH] ICU-3222 Fix some compiler warnings X-SVN-Rev: 13993 --- icu4c/source/i18n/rbt_pars.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icu4c/source/i18n/rbt_pars.cpp b/icu4c/source/i18n/rbt_pars.cpp index 0b7b2ac89b9..ae8dc2906cd 100644 --- a/icu4c/source/i18n/rbt_pars.cpp +++ b/icu4c/source/i18n/rbt_pars.cpp @@ -1093,7 +1093,7 @@ UBool TransliteratorParser::checkVariableRange(UChar32 ch) const { * Set the maximum backup to 'backup', in response to a pragma * statement. */ -void TransliteratorParser::pragmaMaximumBackup(int32_t backup) { +void TransliteratorParser::pragmaMaximumBackup(int32_t /*backup*/) { //TODO Finish } @@ -1101,7 +1101,7 @@ void TransliteratorParser::pragmaMaximumBackup(int32_t backup) { * Begin normalizing all rules using the given mode, in response * to a pragma statement. */ -void TransliteratorParser::pragmaNormalizeRules(UNormalizationMode mode) { +void TransliteratorParser::pragmaNormalizeRules(UNormalizationMode /*mode*/) { //TODO Finish }