diff options
author | Liav A <liavalb@gmail.com> | 2023-02-20 17:41:04 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-02-24 22:14:18 +0100 |
commit | 12b7328c22c698390bf84a58e85651487a35d472 (patch) | |
tree | f42d0b9a3cb040c5d5e42548a05041c80a93f4cb /Kernel/Coredump.cpp | |
parent | 87c4080d009d8f3d714a2f9ad4774696d933902d (diff) | |
download | serenity-12b7328c22c698390bf84a58e85651487a35d472.zip |
AK+Kernel: Add includes before removing Kernel/ProcessExposed.h
Apparently without this file, we won't be able to compile due to missing
includes to TimeManagement and KBufferBuilder.
Diffstat (limited to 'Kernel/Coredump.cpp')
-rw-r--r-- | Kernel/Coredump.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Coredump.cpp b/Kernel/Coredump.cpp index ef3ad65380..5794ab7e74 100644 --- a/Kernel/Coredump.cpp +++ b/Kernel/Coredump.cpp @@ -14,6 +14,7 @@ #include <Kernel/FileSystem/Custody.h> #include <Kernel/FileSystem/OpenFileDescription.h> #include <Kernel/FileSystem/VirtualFileSystem.h> +#include <Kernel/KBufferBuilder.h> #include <Kernel/KLexicalPath.h> #include <Kernel/Locking/Spinlock.h> #include <Kernel/Memory/ScopedAddressSpaceSwitcher.h> |