mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Kernel: Make Process final
This silences a clangd diagnostic about Process holding virtual functions but having a non-virtual destructor.
This commit is contained in:
parent
18f260b78b
commit
24fcff45ae
Notes:
sideshowbarker
2024-07-18 05:42:24 +09:00
Author: https://github.com/sin-ack Commit: https://github.com/SerenityOS/serenity/commit/24fcff45ae5 Pull-request: https://github.com/SerenityOS/serenity/pull/9410 Reviewed-by: https://github.com/awesomekling
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ typedef HashMap<FlatPtr, RefPtr<FutexQueue>> FutexQueues;
|
|||
|
||||
struct LoadResult;
|
||||
|
||||
class Process
|
||||
class Process final
|
||||
: public AK::RefCountedBase
|
||||
, public Weakable<Process> {
|
||||
|
||||
|
|
Loading…
Reference in a new issue