diff options
| author | Liam <byteslice@airmail.cc> | 2023-03-06 20:34:25 -0500 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2023-03-12 22:06:53 -0400 |
| commit | 097c25b164ba830b8d4a89926a3e90d297d06d8f (patch) | |
| tree | 646caab83e97e60249ed102596a968be10acfec8 /src/core/hle/kernel/k_auto_object.h | |
| parent | d24ab14126a761ae40ce5d4964083390f1d7b396 (diff) | |
kernel: convert KPort, KSession
Diffstat (limited to 'src/core/hle/kernel/k_auto_object.h')
| -rw-r--r-- | src/core/hle/kernel/k_auto_object.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/hle/kernel/k_auto_object.h b/src/core/hle/kernel/k_auto_object.h index e8118c2b8..2443ab2a5 100644 --- a/src/core/hle/kernel/k_auto_object.h +++ b/src/core/hle/kernel/k_auto_object.h @@ -164,17 +164,12 @@ public: } } - const std::string& GetName() const { - return name; - } - private: void RegisterWithKernel(); void UnregisterWithKernel(); protected: KernelCore& kernel; - std::string name; private: std::atomic<u32> m_ref_count{}; @@ -208,10 +203,6 @@ public: return reinterpret_cast<u64>(this); } - virtual const std::string& GetName() const { - return name; - } - private: friend class KAutoObjectWithListContainer; }; |
