Kernel: Remove Inode's inheritance from Weakable

Nobody was using WeakPtr<Inode> anywhere, so there's no need for this
to inherit from Weakable.
This commit is contained in:
Andreas Kling 2021-07-21 20:11:29 +02:00
commit a9f76b8270
Notes: sideshowbarker 2024-07-18 08:37:59 +09:00

View file

@ -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;