prefix forward() with namespace boost

This commit is contained in:
Oliver Kowalke
2014-08-21 18:48:14 +02:00
parent d952e5b504
commit 06145727ee
7 changed files with 48 additions and 48 deletions

View File

@@ -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)