diff options
author | Liav A <liavalb@gmail.com> | 2022-11-11 11:11:03 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-11-11 10:25:54 +0100 |
commit | 31d4c07dee7ccdf45747622558d56b2083af51e6 (patch) | |
tree | ee41bb96d7e2f3ed354cd7c2fd81bb494dc4ce41 /Kernel | |
parent | a1300d37975c855795fada9eceec99701747c1d6 (diff) | |
download | serenity-31d4c07dee7ccdf45747622558d56b2083af51e6.zip |
Kernel: Add missing includes for Mount.h file
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/FileSystem/Mount.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/FileSystem/Mount.h b/Kernel/FileSystem/Mount.h index de49c64caa..c2cb23be44 100644 --- a/Kernel/FileSystem/Mount.h +++ b/Kernel/FileSystem/Mount.h @@ -8,6 +8,8 @@ #include <AK/RefPtr.h> #include <Kernel/FileSystem/Custody.h> +#include <Kernel/FileSystem/FileSystem.h> +#include <Kernel/FileSystem/Inode.h> #include <Kernel/Forward.h> #include <Kernel/Library/NonnullLockRefPtr.h> |