diff options
| author | bunnei <bunneidev@gmail.com> | 2021-12-05 23:49:26 -0800 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2021-12-06 16:39:18 -0800 |
| commit | 0d1bdfc1d4f9cb9ceecdb2dd9c784a664f6ba0c8 (patch) | |
| tree | 40ee98688585e116a0773c23eb7bd12f3d488d5c /src/core/hle/kernel/k_synchronization_object.cpp | |
| parent | d7f6d516cefed79dea14465abd7c2a0f036f78b9 (diff) | |
hle: kernel: Remove unnecessary virtual specifier on CancelWait.
Diffstat (limited to 'src/core/hle/kernel/k_synchronization_object.cpp')
| -rw-r--r-- | src/core/hle/kernel/k_synchronization_object.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_synchronization_object.cpp b/src/core/hle/kernel/k_synchronization_object.cpp index ffeb4b73f..6ae93b0ad 100644 --- a/src/core/hle/kernel/k_synchronization_object.cpp +++ b/src/core/hle/kernel/k_synchronization_object.cpp @@ -46,8 +46,8 @@ public: KThreadQueue::EndWait(waiting_thread, wait_result); } - virtual void CancelWait(KThread* waiting_thread, ResultCode wait_result, - bool cancel_timer_task) override { + void CancelWait(KThread* waiting_thread, ResultCode wait_result, + bool cancel_timer_task) override { // Remove all nodes from our list. for (auto i = 0; i < m_count; ++i) { m_objects[i]->UnlinkNode(std::addressof(m_nodes[i])); |
