diff options
Diffstat (limited to 'Kernel/Process.h')
-rw-r--r-- | Kernel/Process.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Process.h b/Kernel/Process.h index 9cf2ff3ec9..83bade854a 100644 --- a/Kernel/Process.h +++ b/Kernel/Process.h @@ -138,7 +138,7 @@ public: ~Process(); static Vector<ProcessID> all_pids(); - static AK::NonnullRefPtrVector<Process> all_processes(); + static NonnullRefPtrVector<Process> all_processes(); template<typename EntryFunction> RefPtr<Thread> create_kernel_thread(EntryFunction entry, u32 priority, const String& name, u32 affinity = THREAD_AFFINITY_DEFAULT, bool joinable = true) |