mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 19:58:11 +00:00
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:
parent
df34f7b90b
commit
b4e864d02d
1 changed files with 1 additions and 1 deletions
|
@ -585,7 +585,7 @@ private:
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
mutable IntrusiveListNode<Process> m_list_node;
|
||||
IntrusiveListNode<Process> m_list_node;
|
||||
|
||||
NonnullOwnPtr<KString> m_name;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue