mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-17 11:05:03 +02:00
Comment out unused function parameters to prevent compiler warnings in client code.
This commit is contained in:
@@ -285,17 +285,17 @@ public:
|
||||
s = oss.str();
|
||||
}
|
||||
|
||||
void convert(DateTime& val) const
|
||||
void convert(DateTime& /*val*/) const
|
||||
{
|
||||
throw BadCastException();
|
||||
}
|
||||
|
||||
void convert(LocalDateTime& ldt) const
|
||||
void convert(LocalDateTime& /*ldt*/) const
|
||||
{
|
||||
throw BadCastException();
|
||||
}
|
||||
|
||||
void convert(Timestamp& ts) const
|
||||
void convert(Timestamp& /*ts*/) const
|
||||
{
|
||||
throw BadCastException();
|
||||
}
|
||||
|
@@ -289,17 +289,17 @@ public:
|
||||
s = oss.str();
|
||||
}
|
||||
|
||||
void convert(DateTime& val) const
|
||||
void convert(DateTime& /*val*/) const
|
||||
{
|
||||
//TODO: val = _val;
|
||||
}
|
||||
|
||||
void convert(LocalDateTime& ldt) const
|
||||
void convert(LocalDateTime& /*ldt*/) const
|
||||
{
|
||||
//TODO: ldt = _val.timestamp();
|
||||
}
|
||||
|
||||
void convert(Timestamp& ts) const
|
||||
void convert(Timestamp& /*ts*/) const
|
||||
{
|
||||
//TODO: ts = _val.timestamp();
|
||||
}
|
||||
|
Reference in New Issue
Block a user