diff options
author | Gunnar Beutner <gbeutner@serenityos.org> | 2021-05-19 14:35:34 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-19 21:36:57 +0200 |
commit | d954c11f6689ae8b1119a76644b546547ee314b7 (patch) | |
tree | 98642a9f4982f9280ee0de59111f31a7d43f76d2 /Userland/Utilities | |
parent | 45a1a7e1e6cb3e88d6f70b161f8b8ada1bded246 (diff) | |
download | serenity-d954c11f6689ae8b1119a76644b546547ee314b7.zip |
Everywhere: Add missing includes for <AK/OwnPtr.h>
Previously <AK/Function.h> also included <AK/OwnPtr.h>. That's about to
change though. This patch fixes a few build problems that will occur
when that change happens.
Diffstat (limited to 'Userland/Utilities')
-rw-r--r-- | Userland/Utilities/disasm.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Utilities/disasm.cpp b/Userland/Utilities/disasm.cpp index a810c6c5b5..be78eeaaa6 100644 --- a/Userland/Utilities/disasm.cpp +++ b/Userland/Utilities/disasm.cpp @@ -6,6 +6,7 @@ #include <AK/Debug.h> #include <AK/MappedFile.h> +#include <AK/OwnPtr.h> #include <AK/QuickSort.h> #include <AK/Vector.h> #include <LibCore/ArgsParser.h> |