mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-25 17:11:59 +00:00
threaded_queue.hh: fix -Wpessimizing-move (#409)
This commit is contained in:
parent
20883c047c
commit
b7027f89e5
@ -135,7 +135,7 @@ public:
|
||||
auto val = std::move(q->front());
|
||||
q->pop_front();
|
||||
--total_count_;
|
||||
return std::move(val);
|
||||
return val;
|
||||
};
|
||||
if (!priority_.empty())
|
||||
return execute(&priority_);
|
||||
@ -150,7 +150,7 @@ public:
|
||||
auto val = std::move(q->front());
|
||||
q->pop_front();
|
||||
--total_count_;
|
||||
return std::move(val);
|
||||
return val;
|
||||
};
|
||||
if (priority_.size())
|
||||
return execute(&priority_);
|
||||
|
Loading…
Reference in New Issue
Block a user