fixup! hle: kernel: Migrate more of KThread to KAutoObject.

This commit is contained in:
bunnei 2021-05-01 21:42:11 -07:00
parent e02785be83
commit ad5a5ef43f

View file

@ -74,13 +74,6 @@ private:
kernel.SlabHeap<Derived>().Free(obj);
}
public:
class ListAccessor : public KAutoObjectWithListContainer::ListAccessor {
public:
ListAccessor() : KAutoObjectWithListContainer::ListAccessor(kernel.ObjectListContainer()) {}
~ListAccessor() = default;
};
public:
KAutoObjectWithSlabHeapAndContainer(KernelCore& kernel_) : Base(kernel_), kernel(kernel_) {}
virtual ~KAutoObjectWithSlabHeapAndContainer() {}