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
Notes:
sideshowbarker
2024-07-17 20:44:08 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/b4e864d02df
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
Reference in a new issue