Skip to content
Snippets Groups Projects
Commit 8c0f02a7 authored by bunnei's avatar bunnei
Browse files

kernel: moved position of * for GetTypeName and GetName

parent 2773360f
No related branches found
No related tags found
No related merge requests found
......@@ -44,8 +44,8 @@ class Object : NonCopyable {
public:
virtual ~Object() {}
Handle GetHandle() const { return handle; }
virtual const char *GetTypeName() { return "[BAD KERNEL OBJECT TYPE]"; }
virtual const char *GetName() { return "[UNKNOWN KERNEL OBJECT]"; }
virtual const char* GetTypeName() { return "[BAD KERNEL OBJECT TYPE]"; }
virtual const char* GetName() { return "[UNKNOWN KERNEL OBJECT]"; }
virtual Kernel::HandleType GetHandleType() const = 0;
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment