diff options
author | Andreas Kling <kling@serenityos.org> | 2021-11-23 11:32:25 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-23 11:33:36 +0100 |
commit | 58fb3ebf660e87a7ac93b5e8a7433ff441e30639 (patch) | |
tree | 1c899f032c0f07a3a8a74649204b2fd06f0775a5 /Userland/DevTools/Profiler/Profile.h | |
parent | c1c9da6c35ff3f28aefb6370dad898cb85e6bcef (diff) | |
download | serenity-58fb3ebf660e87a7ac93b5e8a7433ff441e30639.zip |
LibCore+AK: Move MappedFile from AK to LibCore
MappedFile is strictly a userspace thing, so it doesn't belong in AK
(which is supposed to be user/kernel agnostic.)
Diffstat (limited to 'Userland/DevTools/Profiler/Profile.h')
-rw-r--r-- | Userland/DevTools/Profiler/Profile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/Profiler/Profile.h b/Userland/DevTools/Profiler/Profile.h index 377a3a65af..1e6ac39a36 100644 --- a/Userland/DevTools/Profiler/Profile.h +++ b/Userland/DevTools/Profiler/Profile.h @@ -17,10 +17,10 @@ #include <AK/JsonArray.h> #include <AK/JsonObject.h> #include <AK/JsonValue.h> -#include <AK/MappedFile.h> #include <AK/NonnullRefPtrVector.h> #include <AK/OwnPtr.h> #include <AK/Variant.h> +#include <LibCore/MappedFile.h> #include <LibELF/Image.h> #include <LibGUI/Forward.h> #include <LibGUI/ModelIndex.h> |