summaryrefslogtreecommitdiffstats
path: root/src/common/thread_queue_list.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-03-16 09:41:34 +0100
committerLioncash <mathew1800@gmail.com>2019-03-16 10:01:39 +0100
commitf71c598907ea76095dd3e2a71d160ddbe5c6635c (patch)
treec8d7816de761adcbeec2d9613c1fdd0046b180f7 /src/common/thread_queue_list.h
parentMerge pull request #2241 from lioncash/compile-flags (diff)
downloadyuzu-f71c598907ea76095dd3e2a71d160ddbe5c6635c.tar
yuzu-f71c598907ea76095dd3e2a71d160ddbe5c6635c.tar.gz
yuzu-f71c598907ea76095dd3e2a71d160ddbe5c6635c.tar.bz2
yuzu-f71c598907ea76095dd3e2a71d160ddbe5c6635c.tar.lz
yuzu-f71c598907ea76095dd3e2a71d160ddbe5c6635c.tar.xz
yuzu-f71c598907ea76095dd3e2a71d160ddbe5c6635c.tar.zst
yuzu-f71c598907ea76095dd3e2a71d160ddbe5c6635c.zip
Diffstat (limited to '')
-rw-r--r--src/common/thread_queue_list.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/thread_queue_list.h b/src/common/thread_queue_list.h
index e7594db68..791f99a8c 100644
--- a/src/common/thread_queue_list.h
+++ b/src/common/thread_queue_list.h
@@ -6,7 +6,6 @@
#include <array>
#include <deque>
-#include <boost/range/algorithm_ext/erase.hpp>
namespace Common {
@@ -111,8 +110,9 @@ struct ThreadQueueList {
}
void remove(Priority priority, const T& thread_id) {
- Queue* cur = &queues[priority];
- boost::remove_erase(cur->data, thread_id);
+ Queue* const cur = &queues[priority];
+ const auto iter = std::remove(cur->data.begin(), cur->data.end(), thread_id);
+ cur->data.erase(iter, cur->data.end());
}
void rotate(Priority priority) {