Commit 9c3af63c authored by Joseph Noir's avatar Joseph Noir

Fix namespace of make_counted

parent 49fc9a76
...@@ -116,11 +116,11 @@ class actor_facade<Ret(Args...)> : public abstract_actor { ...@@ -116,11 +116,11 @@ class actor_facade<Ret(Args...)> : public abstract_actor {
args_vec arguments; args_vec arguments;
add_arguments_to_kernel<Ret>(events, arguments, m_result_size, add_arguments_to_kernel<Ret>(events, arguments, m_result_size,
content, indices); content, indices);
auto cmd = detail::make_counted<command_type>(handle, this, auto cmd = make_counted<command_type>(handle, this,
std::move(events), std::move(events),
std::move(arguments), std::move(arguments),
m_result_size, m_result_size,
std::move(content)); std::move(content));
cmd->enqueue(); cmd->enqueue();
} }
......
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