mirror of
https://github.com/boostorg/coroutine.git
synced 2026-02-09 11:02:35 +00:00
fix await_emu example
This commit is contained in:
@@ -55,7 +55,7 @@ public:
|
||||
{
|
||||
boost::unique_lock<boost::mutex> u(m);
|
||||
c.wait(u, [&]{return !q.empty();} );
|
||||
result = move_if_noexcept(q.front());
|
||||
result = std::move_if_noexcept(q.front());
|
||||
q.pop();
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user