kern: qualify inherited KAutoObjectWithListContainer accessor typenames

This commit is contained in:
Michael Scire 2020-07-14 13:36:35 -07:00 committed by SciresM
parent fe035736ca
commit 863515a3b5

View file

@ -457,7 +457,7 @@ namespace ams::kern {
KProcess *KProcess::GetProcessFromId(u64 process_id) { KProcess *KProcess::GetProcessFromId(u64 process_id) {
/* Lock the list. */ /* Lock the list. */
ListAccessor accessor; KProcess::ListAccessor accessor;
const auto end = accessor.end(); const auto end = accessor.end();
/* Iterate over the list. */ /* Iterate over the list. */
@ -478,7 +478,7 @@ namespace ams::kern {
Result KProcess::GetProcessList(s32 *out_num_processes, ams::kern::svc::KUserPointer<u64 *> out_process_ids, s32 max_out_count) { Result KProcess::GetProcessList(s32 *out_num_processes, ams::kern::svc::KUserPointer<u64 *> out_process_ids, s32 max_out_count) {
/* Lock the list. */ /* Lock the list. */
ListAccessor accessor; KProcess::ListAccessor accessor;
const auto end = accessor.end(); const auto end = accessor.end();
/* Iterate over the list. */ /* Iterate over the list. */