diff options
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 5fab1ab58..d6299364a 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -40,7 +40,7 @@ enum ThreadStatus { | |||
| 40 | 40 | ||
| 41 | namespace Kernel { | 41 | namespace Kernel { |
| 42 | 42 | ||
| 43 | class Thread : public WaitObject { | 43 | class Thread final : public WaitObject { |
| 44 | public: | 44 | public: |
| 45 | static ResultVal<SharedPtr<Thread>> Create(std::string name, VAddr entry_point, s32 priority, | 45 | static ResultVal<SharedPtr<Thread>> Create(std::string name, VAddr entry_point, s32 priority, |
| 46 | u32 arg, s32 processor_id, VAddr stack_top, u32 stack_size); | 46 | u32 arg, s32 processor_id, VAddr stack_top, u32 stack_size); |
| @@ -115,7 +115,6 @@ public: | |||
| 115 | bool idle = false; | 115 | bool idle = false; |
| 116 | 116 | ||
| 117 | private: | 117 | private: |
| 118 | |||
| 119 | Thread() = default; | 118 | Thread() = default; |
| 120 | }; | 119 | }; |
| 121 | 120 | ||