ICU-535 Fixed some compiler warnings

X-SVN-Rev: 3309
This commit is contained in:
George Rhoten 2000-12-20 23:43:24 +00:00
parent 52a7c3d7fe
commit 32224f75f7

View File

@ -116,20 +116,24 @@ public:
return NumberFormat::format(obj, toAppendTo, pos, status);
}
virtual UnicodeString& format( double number,
/* Just use one of the format functions */
virtual UnicodeString& format( double /* number */,
UnicodeString& toAppendTo,
FieldPosition& pos) const
FieldPosition& /* pos */) const
{
toAppendTo = "";
return toAppendTo;
}
//public Number parse(String text, ParsePosition parsePosition)
//{ return new Integer(0); }
/*
public Number parse(String text, ParsePosition parsePosition)
{ return new Integer(0); }
*/
virtual void parse( const UnicodeString& text,
/* Just use one of the parse functions */
virtual void parse( const UnicodeString& /* text */,
Formattable& result,
ParsePosition& parsePosition) const
ParsePosition& /* parsePosition */) const
{
result.setLong(0L);
}