Commit 8e7a9375 authored by neverlord's avatar neverlord

removed debug output

parent 69f9a6d0
......@@ -138,13 +138,7 @@ class abstract_scheduled_actor : public abstract_actor<scheduled_actor>
bool pending_enqueue(actor* sender, any_tuple msg)
{
//return enqueue_node(super::fetch_node(sender, std::move(msg)), pending);
if (enqueue_node(super::fetch_node(sender, std::move(msg)), pending))
{
std::cout << "PENDING ENQUEUE SUCCESSFULL\n";
return true;
}
return false;
return enqueue_node(super::fetch_node(sender, std::move(msg)), pending);
}
void quit(std::uint32_t reason)
......
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