summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_synchronization_object.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2021-05-29 08:49:07 +0200
committerLioncash <mathew1800@gmail.com>2021-05-29 08:58:32 +0200
commit7b2917b4e1f257a5bca3892be13bb6dcb1ed9820 (patch)
treed92bec1006154a64e5ca2b7bc9d46b4cf61ced95 /src/core/hle/kernel/k_synchronization_object.h
parentMerge pull request #6375 from lioncash/iofs (diff)
downloadyuzu-7b2917b4e1f257a5bca3892be13bb6dcb1ed9820.tar
yuzu-7b2917b4e1f257a5bca3892be13bb6dcb1ed9820.tar.gz
yuzu-7b2917b4e1f257a5bca3892be13bb6dcb1ed9820.tar.bz2
yuzu-7b2917b4e1f257a5bca3892be13bb6dcb1ed9820.tar.lz
yuzu-7b2917b4e1f257a5bca3892be13bb6dcb1ed9820.tar.xz
yuzu-7b2917b4e1f257a5bca3892be13bb6dcb1ed9820.tar.zst
yuzu-7b2917b4e1f257a5bca3892be13bb6dcb1ed9820.zip
Diffstat (limited to 'src/core/hle/kernel/k_synchronization_object.h')
-rw-r--r--src/core/hle/kernel/k_synchronization_object.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_synchronization_object.h b/src/core/hle/kernel/k_synchronization_object.h
index a41dd1220..3d4ce1fbc 100644
--- a/src/core/hle/kernel/k_synchronization_object.h
+++ b/src/core/hle/kernel/k_synchronization_object.h
@@ -29,7 +29,7 @@ public:
KSynchronizationObject** objects, const s32 num_objects,
s64 timeout);
- virtual void Finalize() override;
+ void Finalize() override;
[[nodiscard]] virtual bool IsSignaled() const = 0;
@@ -37,7 +37,7 @@ public:
protected:
explicit KSynchronizationObject(KernelCore& kernel);
- virtual ~KSynchronizationObject();
+ ~KSynchronizationObject() override;
virtual void OnFinalizeSynchronizationObject() {}