Commit 489a24e1 authored by neverlord's avatar neverlord Committed by Dominik Charousset

Avoid shadowing warning

parent b272f475
...@@ -64,9 +64,9 @@ class proper_actor_base : public Policies::resume_policy::template ...@@ -64,9 +64,9 @@ class proper_actor_base : public Policies::resume_policy::template
scheduling_policy().enqueue(dptr(), sender, mid, msg, eu); scheduling_policy().enqueue(dptr(), sender, mid, msg, eu);
} }
inline void launch(bool hidden, execution_unit* host) { inline void launch(bool hide, execution_unit* host) {
CAF_LOG_TRACE(""); CAF_LOG_TRACE("");
this->is_registered(!hidden); this->is_registered(!hide);
this->scheduling_policy().launch(this, host); this->scheduling_policy().launch(this, host);
} }
......
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