diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-03-20 01:28:03 +0100 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-03-27 19:34:33 +0100 |
commit | f35e09fe0dee84e3373ea1e2daac8d120621fe61 (patch) | |
tree | 1e057985ce48ce235226bc2e507ac55b7860f574 /src/common | |
parent | Use MultiLevelQueue instead of old ThreadQueueList (diff) | |
download | yuzu-f35e09fe0dee84e3373ea1e2daac8d120621fe61.tar yuzu-f35e09fe0dee84e3373ea1e2daac8d120621fe61.tar.gz yuzu-f35e09fe0dee84e3373ea1e2daac8d120621fe61.tar.bz2 yuzu-f35e09fe0dee84e3373ea1e2daac8d120621fe61.tar.lz yuzu-f35e09fe0dee84e3373ea1e2daac8d120621fe61.tar.xz yuzu-f35e09fe0dee84e3373ea1e2daac8d120621fe61.tar.zst yuzu-f35e09fe0dee84e3373ea1e2daac8d120621fe61.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/multi_level_queue.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/multi_level_queue.h b/src/common/multi_level_queue.h index d56ab6531..68b35ffaa 100644 --- a/src/common/multi_level_queue.h +++ b/src/common/multi_level_queue.h @@ -35,7 +35,11 @@ public: using difference_type = typename std::pointer_traits<pointer>::difference_type; friend bool operator==(const iterator_impl& lhs, const iterator_impl& rhs) { - return (lhs.IsEnd() && rhs.IsEnd()) || lhs.it == rhs.it; + if (lhs.IsEnd() && rhs.IsEnd()) + return true; + if (lhs.current_priority == rhs.current_priority) + return lhs.it == rhs.it; + return false; } friend bool operator!=(const iterator_impl& lhs, const iterator_impl& rhs) { |