fix: Resolve compiler warnings across multiple modules

This commit is contained in:
Matej Kenda
2025-12-17 14:04:42 +01:00
parent b79b07c308
commit 7addcfbc81
80 changed files with 324 additions and 315 deletions

View File

@@ -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);