summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h3
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
41namespace Kernel { 41namespace Kernel {
42 42
43class Thread : public WaitObject { 43class Thread final : public WaitObject {
44public: 44public:
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
117private: 117private:
118
119 Thread() = default; 118 Thread() = default;
120}; 119};
121 120