mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-10 11:57:56 -05:00
fixup! hle: kernel: Migrate to KHandleTable.
This commit is contained in:
@ -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());
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user