Commit 836a3874 authored by Dominik Charousset's avatar Dominik Charousset

Fix require statement in event_based_resume

parent ca1bb410
...@@ -91,7 +91,7 @@ class event_based_resume { ...@@ -91,7 +91,7 @@ class event_based_resume {
// an exit reason must not be resumed // an exit reason must not be resumed
CAF_REQUIRE(!d->m_initialized CAF_REQUIRE(!d->m_initialized
|| (!d->bhvr_stack().empty() || (!d->bhvr_stack().empty()
&& !d->planned_exit_reason() != exit_reason::not_exited)); && d->planned_exit_reason() == exit_reason::not_exited));
try { try {
if (!d->m_initialized) { if (!d->m_initialized) {
d->m_initialized = true; d->m_initialized = true;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment