We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
==
1 parent d9b6c5b commit ce469cdCopy full SHA for ce469cd
1 file changed
include/LockFreeSpscQueue.h
@@ -95,7 +95,6 @@ class LockFreeSpscQueue
95
return *this;
96
}
97
iterator operator++(int) { iterator tmp = *this; ++(*this); return tmp; }
98
- bool operator==(const iterator& other) const = default;
99
bool operator==(const iterator& other) const {
100
// For two iterators to be equal, they only need to point to the same element.
101
// The other members define the boundaries of the range, which are guaranteed
0 commit comments