From a9f76b82706597775a353725a4cdffb3d9e59dbd Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 21 Jul 2021 20:11:29 +0200 Subject: [PATCH] Kernel: Remove Inode's inheritance from Weakable Nobody was using WeakPtr anywhere, so there's no need for this to inherit from Weakable. --- Kernel/FileSystem/Inode.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Kernel/FileSystem/Inode.h b/Kernel/FileSystem/Inode.h index f8c9438570..a055936775 100644 --- a/Kernel/FileSystem/Inode.h +++ b/Kernel/FileSystem/Inode.h @@ -23,8 +23,7 @@ namespace Kernel { -class Inode : public RefCounted - , public Weakable { +class Inode : public RefCounted { friend class VirtualFileSystem; friend class FileSystem;