Skip to content

Commit ce469cd

Browse files
authored
Remove forgotten default == operator
1 parent d9b6c5b commit ce469cd

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

include/LockFreeSpscQueue.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ class LockFreeSpscQueue
9595
return *this;
9696
}
9797
iterator operator++(int) { iterator tmp = *this; ++(*this); return tmp; }
98-
bool operator==(const iterator& other) const = default;
9998
bool operator==(const iterator& other) const {
10099
// For two iterators to be equal, they only need to point to the same element.
101100
// The other members define the boundaries of the range, which are guaranteed

0 commit comments

Comments
 (0)