Skip to content
Snippets Groups Projects
Commit e21034a0 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Merge branch 'fix-context-manager-dbg' into 'master'

[Context] Fix DBG message

See merge request !318
parents 024ed667 cd6cba4e
No related branches found
No related tags found
1 merge request!318[Context] Fix DBG message
Pipeline #76346 failed
......@@ -27,6 +27,7 @@ auto operator<<(std::ostream& strm, const Context& context) -> std::ostream& {
// Can't use new context hook to communicate the context to free.
lastContextBeforeReturningToOriginalStack = currentContext;
currentContext = nullptr;
DBG("Switchting to original stack " << &originalStack << " from " << currentContext);
DBG("Switchting to original stack " << &originalStack << " from "
<< lastContextBeforeReturningToOriginalStack);
switch_and_load_context(&originalStack);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment