Commit 492f6535 authored by neverlord's avatar neverlord

reformatting

parent 66e53f85
...@@ -91,16 +91,13 @@ class yielding_actor : public abstract_scheduled_actor ...@@ -91,16 +91,13 @@ class yielding_actor : public abstract_scheduled_actor
{ {
switch (m_parent->filter_msg(msg)) switch (m_parent->filter_msg(msg))
{ {
case normal_exit_signal:
{
return m_parent->m_trap_exit == false;
}
case timeout_message: case timeout_message:
{ {
bhvr->handle_timeout(); bhvr->handle_timeout();
*timeout_occured = true; *timeout_occured = true;
return true; return true;
} }
case normal_exit_signal:
case expired_timeout_message: case expired_timeout_message:
{ {
return true; return 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