We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ac64fa commit 2ddd0e3Copy full SHA for 2ddd0e3
source/containers/linked_list_helper.cpp
@@ -88,7 +88,7 @@ struct list_iterator {
88
}
89
OPERATORS_ARROW_DEFINITIONS
90
91
- friend auto operator<=>(list_iterator, list_iterator) = default;
+ friend auto operator==(list_iterator, list_iterator) -> bool = default;
92
93
friend constexpr auto operator+(list_iterator const it, bounded::constant_t<1>) {
94
return list_iterator<Container, Links, T>(it.m_links->next);
0 commit comments