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:
parent
43d6a7e74e
commit
a9f76b8270
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue