1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:48:11 +00:00

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
parent 43d6a7e74e
commit a9f76b8270

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;