Skip to content
Snippets Groups Projects
Commit a8dadf8b authored by Florian Fischer's avatar Florian Fischer
Browse files

[laws] fix death message on unknown fiberSource

This was never reported by the compiler because DIE_MSG treated
its argument as a string. With the new stream formatting support the
compiler sees the undefined symbol flag.
parent 0ced7265
No related branches found
No related tags found
No related merge requests found
Pipeline #57676 passed
...@@ -48,7 +48,7 @@ void LawsDispatcher::dispatchLoop() { ...@@ -48,7 +48,7 @@ void LawsDispatcher::dispatchLoop() {
lawsStrategy.dispatchedFiberFromAnywhere.fetch_add(1, std::memory_order_relaxed); lawsStrategy.dispatchedFiberFromAnywhere.fetch_add(1, std::memory_order_relaxed);
break; break;
default: default:
DIE_MSG("Unknown fiber flag: " << flag); DIE_MSG("Unknown fiber source: " << next.metadata);
break; break;
} }
} }
......
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