You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the operator() of the task_system is instantiated with a move only lambda, the notification queue tries to move the lambda into an std::function object in the dequeue of the notification_queue. std::function is by definition movable, this is turn generates a compilation error for such instantiations of the std::function.
The text was updated successfully, but these errors were encountered:
When the operator() of the task_system is instantiated with a move only lambda, the notification queue tries to move the lambda into an std::function object in the dequeue of the notification_queue. std::function is by definition movable, this is turn generates a compilation error for such instantiations of the std::function.
The text was updated successfully, but these errors were encountered: