فهرست منبع

Kernel: Remove Inode's inheritance from Weakable

Nobody was using WeakPtr<Inode> anywhere, so there's no need for this
to inherit from Weakable.
Andreas Kling 4 سال پیش
والد
کامیت
a9f76b8270
1فایلهای تغییر یافته به همراه1 افزوده شده و 2 حذف شده
  1. 1 2
      Kernel/FileSystem/Inode.h

+ 1 - 2
Kernel/FileSystem/Inode.h

@@ -23,8 +23,7 @@
 
 namespace Kernel {
 
-class Inode : public RefCounted<Inode>
-    , public Weakable<Inode> {
+class Inode : public RefCounted<Inode> {
     friend class VirtualFileSystem;
     friend class FileSystem;