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

Some more renaming:

FileSystem -> FS
SyntheticFileSystem -> SynthFS
ProcFileSystem -> ProcFS
Ext2FileSystem -> Ext2FS
Ext2Inode -> Ext2FSInode
This commit is contained in:
Andreas Kling 2018-11-15 17:13:10 +01:00
parent eced5f11e3
commit 2529925fe9
16 changed files with 187 additions and 187 deletions

View file

@ -3,7 +3,7 @@
#include <AK/ByteBuffer.h>
#include <AK/Types.h>
class FileSystem;
class FS;
struct InodeMetadata;
class InodeIdentifier {
@ -20,8 +20,8 @@ public:
dword fsid() const { return m_fileSystemID; }
dword index() const { return m_index; }
FileSystem* fileSystem();
const FileSystem* fileSystem() const;
FS* fileSystem();
const FS* fileSystem() const;
bool operator==(const InodeIdentifier& other) const
{