mirror of
https://github.com/boostorg/coroutine.git
synced 2026-02-08 22:53:00 +00:00
prefix forward() with namespace boost
This commit is contained in:
@@ -48,7 +48,7 @@ public:
|
||||
void push(U &&u)
|
||||
{
|
||||
boost::lock_guard<boost::mutex> l(m);
|
||||
q.push( forward<U>(u) );
|
||||
q.push( boost::forward<U>(u) );
|
||||
c.notify_one();
|
||||
}
|
||||
void pop(T &result)
|
||||
|
||||
Reference in New Issue
Block a user