aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/k_synchronization_object.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-05-29 02:11:40 -0700
committerGitHub <noreply@github.com>2021-05-29 02:11:40 -0700
commitc7c4ef9d437d3912eff362d9495e84c84cb5f9ed (patch)
treec27bb6b3308d981be25f94214bc78ab4e3f29f7f /src/core/hle/kernel/k_synchronization_object.h
parentcdabc9064bbc2e289ac0b3e3a6aae4cf500bce96 (diff)
parent7b2917b4e1f257a5bca3892be13bb6dcb1ed9820 (diff)
Merge pull request #6384 from lioncash/virtual
kernel: Add missing override specifiers
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() {}