summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-03-19 20:28:03 -0400
committerFernandoS27 <fsahmkow27@gmail.com>2019-03-27 14:34:33 -0400
commitf35e09fe0dee84e3373ea1e2daac8d120621fe61 (patch)
tree1e057985ce48ce235226bc2e507ac55b7860f574
parentdde0814837866e5c27cd5c97be0461bdca481bc2 (diff)
Fixes to multilevelqueue's iterator.
-rw-r--r--src/common/multi_level_queue.h6
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) {