mirror of
https://github.com/pocoproject/poco.git
synced 2026-01-12 18:25:41 +01:00
fix: Resolve compiler warnings across multiple modules
This commit is contained in:
@@ -186,7 +186,7 @@ Object::NameList Object::getNames() const
|
||||
|
||||
void Object::stringify(std::ostream& out, unsigned int indent, int step) const
|
||||
{
|
||||
if (step < 0) step = indent;
|
||||
if (step < 0) step = static_cast<int>(indent);
|
||||
|
||||
if (!_preserveInsOrder)
|
||||
doStringify(_values, out, indent, step);
|
||||
|
||||
Reference in New Issue
Block a user