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/Libraries/LibGfx/FontDatabase.h | |
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/Libraries/LibGfx/FontDatabase.h')
-rw-r--r-- | Userland/Libraries/LibGfx/FontDatabase.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGfx/FontDatabase.h b/Userland/Libraries/LibGfx/FontDatabase.h index cdc0d3fa93..30e239784f 100644 --- a/Userland/Libraries/LibGfx/FontDatabase.h +++ b/Userland/Libraries/LibGfx/FontDatabase.h @@ -8,6 +8,7 @@ #include <AK/Function.h> #include <AK/HashMap.h> +#include <AK/OwnPtr.h> #include <AK/String.h> #include <LibGfx/Forward.h> #include <LibGfx/Typeface.h> |