summaryrefslogtreecommitdiff
path: root/Kernel/Process.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-01-16 17:06:33 +0100
committerAndreas Kling <kling@serenityos.org>2022-01-16 23:31:01 +0100
commitb4e864d02dfe84d5a2668f830b912c1b62f67c43 (patch)
tree1645980549a91b07e0e06192506ce3779306d745 /Kernel/Process.h
parentdf34f7b90b0dc8a3319d67d2a75551cba225aaf1 (diff)
downloadserenity-b4e864d02dfe84d5a2668f830b912c1b62f67c43.zip
Kernel: Make Process::m_list_node non-mutable
The mutable keyword was not achieving anything, so let's remove it.
Diffstat (limited to 'Kernel/Process.h')
-rw-r--r--Kernel/Process.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Process.h b/Kernel/Process.h
index 6fdf0e7ec3..3aca4400df 100644
--- a/Kernel/Process.h
+++ b/Kernel/Process.h
@@ -585,7 +585,7 @@ private:
return nullptr;
}
- mutable IntrusiveListNode<Process> m_list_node;
+ IntrusiveListNode<Process> m_list_node;
NonnullOwnPtr<KString> m_name;