Commit 8eea7aa0 authored by Joseph Noir's avatar Joseph Noir

Fix call to super class member

parent 21d90b7d
...@@ -357,7 +357,7 @@ struct newb : public extend<scheduled_actor, newb<Message>>::template ...@@ -357,7 +357,7 @@ struct newb : public extend<scheduled_actor, newb<Message>>::template
CAF_LOG_TRACE(""); CAF_LOG_TRACE("");
intrusive_ptr_add_ref(super::ctrl()); intrusive_ptr_add_ref(super::ctrl());
CAF_LOG_DEBUG("starting newb"); CAF_LOG_DEBUG("starting newb");
activate(); event_handler::activate();
if (transport) if (transport)
transport->prepare_next_read(this); transport->prepare_next_read(this);
} }
......
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