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 c5c1cc8 commit aa0ee0eCopy full SHA for aa0ee0e
AK/InlineLinkedList.h
@@ -19,7 +19,7 @@ class InlineLinkedListIterator {
19
return *this;
20
}
21
T& operator*() { return *m_node; }
22
- T* operator->() { return &m_node; }
+ T* operator->() { return m_node; }
23
bool is_end() const { return !m_node; }
24
static InlineLinkedListIterator universal_end() { return InlineLinkedListIterator(nullptr); }
25
0 commit comments