From 0bb2729423d22760bdfc3ad80b294480408bebe2 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 21 Feb 2021 21:30:07 +0100 Subject: [PATCH] LibCpp: Fix busted outln() invocations --- Userland/Libraries/LibCpp/AST.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Libraries/LibCpp/AST.cpp b/Userland/Libraries/LibCpp/AST.cpp index 68f24da944..c8a15cdfe5 100644 --- a/Userland/Libraries/LibCpp/AST.cpp +++ b/Userland/Libraries/LibCpp/AST.cpp @@ -99,12 +99,12 @@ void FunctionDefinition::dump(size_t indent) const { ASTNode::dump(indent); print_indent(indent); - outln("{"); + outln("{{"); for (const auto& statement : m_statements) { statement.dump(indent + 1); } print_indent(indent); - outln("}"); + outln("}}"); } NonnullRefPtrVector FunctionDefinition::declarations() const