LibCpp: Fix yet another broken outln() invocation..

Fixes #5463
This commit is contained in:
Andreas Kling 2021-02-21 22:12:40 +01:00
commit bd830c2dfe
Notes: sideshowbarker 2024-07-18 22:02:01 +09:00

View file

@ -217,7 +217,7 @@ void AssignmentExpression::dump(size_t indent) const
m_lhs->dump(indent + 1);
print_indent(indent + 1);
ASSERT(op_string);
outln("{}");
outln("{}", op_string);
m_rhs->dump(indent + 1);
}