From cdf52b85a5473c00865028b72180b5e90e1bcd64 Mon Sep 17 00:00:00 2001 From: augustin64 Date: Fri, 12 Jan 2024 16:00:30 +0100 Subject: [PATCH] Update Memory::_debug_print --- src/memory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/memory.cpp b/src/memory.cpp index 754130e..85b94c6 100644 --- a/src/memory.cpp +++ b/src/memory.cpp @@ -199,7 +199,7 @@ void Memory::_debug_print(void) { for (auto rit = scopes.rbegin(); rit != scopes.rend(); ++rit) { Scope& scope = *rit; if (rit != scopes.rbegin()) { - cout << " --- New Scope ---" << endl; + cout << " -------------- New Scope -------------" << endl; } _debug_print_scope(scope);