Kernel: Make Process::m_list_node non-mutable

The mutable keyword was not achieving anything, so let's remove it.
This commit is contained in:
Andreas Kling 2022-01-16 17:06:33 +01:00
parent df34f7b90b
commit b4e864d02d
Notes: sideshowbarker 2024-07-17 20:44:08 +09:00

View file

@ -585,7 +585,7 @@ private:
return nullptr;
}
mutable IntrusiveListNode<Process> m_list_node;
IntrusiveListNode<Process> m_list_node;
NonnullOwnPtr<KString> m_name;