mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-08 21:21:48 +00:00
kern: qualify inherited KAutoObjectWithListContainer accessor typenames
This commit is contained in:
parent
fe035736ca
commit
863515a3b5
1 changed files with 2 additions and 2 deletions
|
@ -457,7 +457,7 @@ namespace ams::kern {
|
|||
|
||||
KProcess *KProcess::GetProcessFromId(u64 process_id) {
|
||||
/* Lock the list. */
|
||||
ListAccessor accessor;
|
||||
KProcess::ListAccessor accessor;
|
||||
const auto end = accessor.end();
|
||||
|
||||
/* 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) {
|
||||
/* Lock the list. */
|
||||
ListAccessor accessor;
|
||||
KProcess::ListAccessor accessor;
|
||||
const auto end = accessor.end();
|
||||
|
||||
/* Iterate over the list. */
|
||||
|
|
Loading…
Reference in a new issue