util::IntrusiveList: assert member referencing is correct

This commit is contained in:
Michael Scire
2020-01-16 00:30:42 -08:00
parent 0751db5d12
commit 769a57526c
4 changed files with 11 additions and 5 deletions

View File

@@ -22,11 +22,11 @@ namespace ams::os::impl {
class WaitableManagerImpl;
class WaitableHolderBase {
private:
WaitableManagerImpl *manager = nullptr;
public:
util::IntrusiveListNode manager_node;
util::IntrusiveListNode object_list_node;
private:
WaitableManagerImpl *manager = nullptr;
public:
/* Gets whether the held waitable is currently signaled. */
virtual TriBool IsSignaled() const = 0;