util/IntrusiveList: add another missing ToNode() call

This commit is contained in:
Max Kellermann 2021-10-13 11:04:17 +02:00
parent 1c97793b49
commit 2b30ac2351

View File

@ -338,7 +338,7 @@ public:
}
static constexpr iterator iterator_to(const T &t) noexcept {
return {&t};
return {&ToNode(t)};
}
iterator erase(iterator i) noexcept {