mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-10 23:17:57 -05:00
Kernel: Remove Object::GetHandle (it's not used anymore :D)
This commit is contained in:
@ -58,14 +58,9 @@ enum {
|
||||
DEFAULT_STACK_SIZE = 0x4000,
|
||||
};
|
||||
|
||||
class HandleTable;
|
||||
|
||||
class Object : NonCopyable {
|
||||
friend class HandleTable;
|
||||
u32 handle = INVALID_HANDLE;
|
||||
public:
|
||||
virtual ~Object() {}
|
||||
Handle GetHandle() const { return handle; }
|
||||
|
||||
/// Returns a unique identifier for the object. For debugging purposes only.
|
||||
unsigned int GetObjectId() const { return object_id; }
|
||||
|
Reference in New Issue
Block a user