mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-31 23:08:22 -04:00
kern: mark KThread/KProcess.GetId() final to save virtual calls
This commit is contained in:
parent
e5b7eb89e5
commit
cda15f08d8
3 changed files with 3 additions and 3 deletions
libraries/libmesosphere/include/mesosphere
|
@ -377,7 +377,7 @@ namespace ams::kern {
|
|||
|
||||
virtual void Finalize() override;
|
||||
|
||||
virtual u64 GetId() const override { return this->GetProcessId(); }
|
||||
virtual u64 GetId() const override final { return this->GetProcessId(); }
|
||||
|
||||
virtual bool IsSignaled() const override {
|
||||
MESOSPHERE_ASSERT_THIS();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue