Commit 55eebf76 authored by gabime's avatar gabime

clear fix

parent bb529a22
...@@ -97,7 +97,7 @@ public: ...@@ -97,7 +97,7 @@ public:
{ {
{ {
std::unique_lock<std::mutex> ul(mutex_); std::unique_lock<std::mutex> ul(mutex_);
q_ = queue_t{}; q_.swap(queue_t());
} }
item_popped_cond_.notify_all(); item_popped_cond_.notify_all();
} }
......
...@@ -86,9 +86,7 @@ void testq(int size, int pushers, int poppers) ...@@ -86,9 +86,7 @@ void testq(int size, int pushers, int poppers)
for(int i = 0; i < pushers; i++) for(int i = 0; i < pushers; i++)
new std::thread(std::bind(pusher, &q)); new std::thread(std::bind(pusher, &q));
while(active) while(active)
{ {
using std::endl; using std::endl;
......
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