util: fix copy/paste error in intrusive lists

This commit is contained in:
Michael Scire 2019-07-17 20:30:20 -07:00 committed by SciresM
parent 7e169bc7df
commit 442ebff829

View file

@ -103,11 +103,11 @@ namespace sts::util {
}
IntrusiveListNode *GetNext() {
return this->prev;
return this->next;
}
const IntrusiveListNode *GetNext() const {
return this->prev;
return this->next;
}
};