mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 17:15:08 +00:00
Rename CoreInode to Inode.
I don't know what I was thinking here. Clearly Inode is the right name.
This commit is contained in:
parent
038d8641f9
commit
d506c857ab
9 changed files with 30 additions and 30 deletions
|
@ -227,7 +227,7 @@ InodeIdentifier SynthFS::find_parent_of_inode(InodeIdentifier inode) const
|
|||
return (*it).value->m_parent;
|
||||
}
|
||||
|
||||
RetainPtr<CoreInode> SynthFS::get_inode(InodeIdentifier inode) const
|
||||
RetainPtr<Inode> SynthFS::get_inode(InodeIdentifier inode) const
|
||||
{
|
||||
auto it = m_inodes.find(inode.index());
|
||||
if (it == m_inodes.end())
|
||||
|
@ -236,7 +236,7 @@ RetainPtr<CoreInode> SynthFS::get_inode(InodeIdentifier inode) const
|
|||
}
|
||||
|
||||
SynthFSInode::SynthFSInode(SynthFS& fs, unsigned index)
|
||||
: CoreInode(fs, index)
|
||||
: Inode(fs, index)
|
||||
{
|
||||
m_metadata.inode = { fs.id(), index };
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue