don't mention unused parameters to avoid compiler warning

This commit is contained in:
zimoch
2011-02-04 15:07:02 +00:00
parent 7cdec03dcb
commit a91496884c
2 changed files with 4 additions and 4 deletions

View File

@ -44,8 +44,8 @@ class MantissaExponentConverter : public StreamFormatConverter
};
int MantissaExponentConverter::
parse(const StreamFormat& fmt, StreamBuffer& info,
const char*& source, bool scanFormat)
parse(const StreamFormat&, StreamBuffer&,
const char*&, bool)
{
return double_format;
}

View File

@ -53,8 +53,8 @@ class TimestampConverter : public StreamFormatConverter
};
int TimestampConverter::
parse(const StreamFormat& fmt, StreamBuffer& info,
const char*& source, bool scanFormat)
parse(const StreamFormat&, StreamBuffer& info,
const char*& source, bool)
{
unsigned int n;
char* c;