summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_client_port.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_client_port.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_client_port.h')
-rw-r--r--src/core/hle/kernel/k_client_port.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/k_client_port.h b/src/core/hle/kernel/k_client_port.h
index 8501156e8..f2fff3b01 100644
--- a/src/core/hle/kernel/k_client_port.h
+++ b/src/core/hle/kernel/k_client_port.h
@@ -22,7 +22,7 @@ class KClientPort final : public KSynchronizationObject {
public:
explicit KClientPort(KernelCore& kernel_);
- virtual ~KClientPort() override;
+ ~KClientPort() override;
void Initialize(KPort* parent_, s32 max_sessions_, std::string&& name_);
void OnSessionFinalized();
@@ -49,8 +49,8 @@ public:
bool IsServerClosed() const;
// Overridden virtual functions.
- virtual void Destroy() override;
- virtual bool IsSignaled() const override;
+ void Destroy() override;
+ bool IsSignaled() const override;
ResultCode CreateSession(KClientSession** out);