Update Memory::_debug_print

This commit is contained in:
augustin64 2024-01-12 16:00:30 +01:00
parent 2f1d9ab183
commit cdf52b85a5

View File

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