don't mention unused parameters to avoid compiler warning
This commit is contained in:
@ -44,8 +44,8 @@ class MantissaExponentConverter : public StreamFormatConverter
|
|||||||
};
|
};
|
||||||
|
|
||||||
int MantissaExponentConverter::
|
int MantissaExponentConverter::
|
||||||
parse(const StreamFormat& fmt, StreamBuffer& info,
|
parse(const StreamFormat&, StreamBuffer&,
|
||||||
const char*& source, bool scanFormat)
|
const char*&, bool)
|
||||||
{
|
{
|
||||||
return double_format;
|
return double_format;
|
||||||
}
|
}
|
||||||
|
@ -53,8 +53,8 @@ class TimestampConverter : public StreamFormatConverter
|
|||||||
};
|
};
|
||||||
|
|
||||||
int TimestampConverter::
|
int TimestampConverter::
|
||||||
parse(const StreamFormat& fmt, StreamBuffer& info,
|
parse(const StreamFormat&, StreamBuffer& info,
|
||||||
const char*& source, bool scanFormat)
|
const char*& source, bool)
|
||||||
{
|
{
|
||||||
unsigned int n;
|
unsigned int n;
|
||||||
char* c;
|
char* c;
|
||||||
|
Reference in New Issue
Block a user