diff options
author | bunnei <bunneidev@gmail.com> | 2021-05-01 12:36:48 -0700 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2021-05-05 16:40:53 -0700 |
commit | 51aa5a5364dffb7d8d278a66e69f190aef05c666 (patch) | |
tree | e1cd710baace02649e417a198d7391bdd9468068 /src | |
parent | 25538db150a90f01356c238e65548ccf3e797cd8 (diff) |
fixup! hle: kernel: Add initial impl. of KAutoObjectWithListContainer.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/kernel/k_auto_object_container.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/core/hle/kernel/k_auto_object_container.cpp b/src/core/hle/kernel/k_auto_object_container.cpp index 85d03ebe3..fc0c28874 100644 --- a/src/core/hle/kernel/k_auto_object_container.cpp +++ b/src/core/hle/kernel/k_auto_object_container.cpp @@ -21,15 +21,8 @@ void KAutoObjectWithListContainer::Unregister(KAutoObjectWithList* obj) { size_t KAutoObjectWithListContainer::GetOwnedCount(KProcess* owner) { KScopedLightLock lk(m_lock); - size_t count = 0; - - for (auto& obj : m_object_list) { - if (obj.GetOwner() == owner) { - count++; - } - } - - return count; + return std::count_if(m_object_list.begin(), m_object_list.end(), + [&](const auto& obj) { return obj.GetOwner() == owner; }); } } // namespace Kernel |