fixup! hle: kernel: Migrate to KHandleTable.

merge-requests/60/head
bunnei 2021-05-01 12:50:35 +07:00
parent 34abe4a905
commit 2cdc7142b0
1 changed files with 1 additions and 1 deletions

@ -107,7 +107,7 @@ public:
template <typename T>
ResultCode Add(Handle* out_handle, T* obj) {
static_assert(std::is_base_o_vf<KAutoObject, T>);
static_assert(std::is_base_of_v<KAutoObject, T>);
return this->Add(out_handle, obj, obj->GetTypeObj().GetClassToken());
}