Merge pull request #6141

b9b5c473 threadpool: use std::move when taking an element off the queue (moneromooo-monero)
sha3
Alexander Blair 4 years ago
commit c39ea485a0
No known key found for this signature in database
GPG Key ID: C64552D877C32479

@ -160,7 +160,7 @@ void threadpool::run(bool flush) {
if (!running) break;
active++;
e = queue.front();
e = std::move(queue.front());
queue.pop_front();
lock.unlock();
++depth;

Loading…
Cancel
Save