summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_thread_queue.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-11-21 11:29:53 +0100
committerbunnei <bunneidev@gmail.com>2021-12-07 01:39:17 +0100
commit8f4ff06c4cf807ff68619eb69cc69dc20659d6d6 (patch)
tree37729ddb9aaac49204cf773b2c685b676ab4de46 /src/core/hle/kernel/k_thread_queue.h
parenthle: kernel: KProcess: Improvements for thread pinning. (diff)
downloadyuzu-8f4ff06c4cf807ff68619eb69cc69dc20659d6d6.tar
yuzu-8f4ff06c4cf807ff68619eb69cc69dc20659d6d6.tar.gz
yuzu-8f4ff06c4cf807ff68619eb69cc69dc20659d6d6.tar.bz2
yuzu-8f4ff06c4cf807ff68619eb69cc69dc20659d6d6.tar.lz
yuzu-8f4ff06c4cf807ff68619eb69cc69dc20659d6d6.tar.xz
yuzu-8f4ff06c4cf807ff68619eb69cc69dc20659d6d6.tar.zst
yuzu-8f4ff06c4cf807ff68619eb69cc69dc20659d6d6.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_thread_queue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_thread_queue.h b/src/core/hle/kernel/k_thread_queue.h
index fddf16e8b..1f13cde83 100644
--- a/src/core/hle/kernel/k_thread_queue.h
+++ b/src/core/hle/kernel/k_thread_queue.h
@@ -12,7 +12,7 @@ namespace Kernel {
class KThreadQueue {
public:
explicit KThreadQueue(KernelCore& kernel_) : kernel{kernel_} {}
- virtual ~KThreadQueue(){};
+ virtual ~KThreadQueue() = default;
virtual void NotifyAvailable(KThread* waiting_thread, KSynchronizationObject* signaled_object,
ResultCode wait_result);