mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-02 22:55:23 +00:00
Kernel: Switch LockRefPtr<Inode> to RefPtr<Inode>
The main place where this is a little iffy is in RAMFS where inodes have a LockWeakPtr to their parent inode. I've left that as a LockWeakPtr for now.
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
InodeFile::InodeFile(NonnullLockRefPtr<Inode>&& inode)
|
||||
InodeFile::InodeFile(NonnullRefPtr<Inode> inode)
|
||||
: m_inode(move(inode))
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user