1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 18:20:43 +09: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
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;