don't mention unused parameters to avoid compiler warning
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user