mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:07:34 +00:00
Everywhere: Prefix 'TYPEDEF_DISTINCT_ORDERED_ID' with 'AK_'
This commit is contained in:
parent
5a106b6401
commit
8150d71821
15 changed files with 44 additions and 43 deletions
|
@ -13,7 +13,7 @@ namespace Kernel {
|
|||
|
||||
class BlockBasedFileSystem : public FileBackedFileSystem {
|
||||
public:
|
||||
TYPEDEF_DISTINCT_ORDERED_ID(u64, BlockIndex);
|
||||
AK_TYPEDEF_DISTINCT_ORDERED_ID(u64, BlockIndex);
|
||||
|
||||
virtual ~BlockBasedFileSystem() override;
|
||||
virtual ErrorOr<void> initialize() override;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
namespace Kernel {
|
||||
|
||||
TYPEDEF_DISTINCT_ORDERED_ID(unsigned, MajorNumber);
|
||||
TYPEDEF_DISTINCT_ORDERED_ID(unsigned, MinorNumber);
|
||||
AK_TYPEDEF_DISTINCT_ORDERED_ID(unsigned, MajorNumber);
|
||||
AK_TYPEDEF_DISTINCT_ORDERED_ID(unsigned, MinorNumber);
|
||||
|
||||
}
|
||||
|
|
|
@ -105,7 +105,7 @@ public:
|
|||
FeaturesReadOnly get_features_readonly() const;
|
||||
|
||||
private:
|
||||
TYPEDEF_DISTINCT_ORDERED_ID(unsigned, GroupIndex);
|
||||
AK_TYPEDEF_DISTINCT_ORDERED_ID(unsigned, GroupIndex);
|
||||
|
||||
explicit Ext2FS(OpenFileDescription&);
|
||||
|
||||
|
|
|
@ -15,8 +15,8 @@ namespace Kernel {
|
|||
class FileSystem;
|
||||
struct InodeMetadata;
|
||||
|
||||
TYPEDEF_DISTINCT_ORDERED_ID(u32, FileSystemID);
|
||||
TYPEDEF_DISTINCT_ORDERED_ID(u64, InodeIndex);
|
||||
AK_TYPEDEF_DISTINCT_ORDERED_ID(u32, FileSystemID);
|
||||
AK_TYPEDEF_DISTINCT_ORDERED_ID(u64, InodeIndex);
|
||||
|
||||
class InodeIdentifier {
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue