diff options
author | Hendiadyoin1 <leon2002.la@gmail.com> | 2021-12-15 15:02:22 +0100 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2021-12-15 23:34:11 -0800 |
commit | fe2cf774c3721c64ea2ec76d030d16ff9edbde41 (patch) | |
tree | 8ac13c655e0b7ec9b39f32cc1728c5cf5e27fa63 /Kernel/FileSystem | |
parent | 9bf81463f5ea9810602609485a85673c1d9b6057 (diff) | |
download | serenity-fe2cf774c3721c64ea2ec76d030d16ff9edbde41.zip |
Kernel: Fix missing include in FileSystem/Mount.h
Diffstat (limited to 'Kernel/FileSystem')
-rw-r--r-- | Kernel/FileSystem/Mount.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/FileSystem/Mount.h b/Kernel/FileSystem/Mount.h index 57790ad043..065f2766fe 100644 --- a/Kernel/FileSystem/Mount.h +++ b/Kernel/FileSystem/Mount.h @@ -7,6 +7,7 @@ #pragma once #include <AK/NonnullRefPtr.h> +#include <Kernel/FileSystem/Custody.h> #include <Kernel/Forward.h> namespace Kernel { |