diff options
author | James Mintram <me@jamesrm.com> | 2021-10-14 00:07:37 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-10-14 01:23:08 +0100 |
commit | 545ce5b5957df8f21de574e15453a711770262f0 (patch) | |
tree | 2c59bbef8056d9678b46202ec7c085f069bc7e29 /Kernel/FileSystem/InodeMetadata.h | |
parent | 23676bee1f95ab3d441a44b4601670ab7fcabf0d (diff) | |
download | serenity-545ce5b5957df8f21de574e15453a711770262f0.zip |
Kernel: Add per platform Processor.h headers
The platform independent Processor.h file includes the shared processor
code and includes the specific platform header file.
All references to the Arch/x86/Processor.h file have been replaced with
a reference to Arch/Processor.h.
Diffstat (limited to 'Kernel/FileSystem/InodeMetadata.h')
-rw-r--r-- | Kernel/FileSystem/InodeMetadata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/FileSystem/InodeMetadata.h b/Kernel/FileSystem/InodeMetadata.h index 407d941a83..ba61a76234 100644 --- a/Kernel/FileSystem/InodeMetadata.h +++ b/Kernel/FileSystem/InodeMetadata.h @@ -9,8 +9,8 @@ #include <AK/Span.h> #include <Kernel/API/KResult.h> #include <Kernel/FileSystem/InodeIdentifier.h> -#include <Kernel/UnixTypes.h> #include <Kernel/Forward.h> +#include <Kernel/UnixTypes.h> namespace Kernel { |