forked from eden-emu/eden
hle: kernel: Remove unnecessary virtual specifier on CancelWait.
This commit is contained in:
parent
d7f6d516ce
commit
0d1bdfc1d4
6 changed files with 14 additions and 14 deletions
|
@ -72,8 +72,8 @@ public:
|
|||
explicit ThreadQueueImplForKThreadSetProperty(KernelCore& kernel_, KThread::WaiterList* wl)
|
||||
: KThreadQueue(kernel_), m_wait_list(wl) {}
|
||||
|
||||
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 the thread from the wait list.
|
||||
m_wait_list->erase(m_wait_list->iterator_to(*waiting_thread));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue