1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:57:44 +00:00

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.
This commit is contained in:
Gunnar Beutner 2021-05-19 14:35:34 +02:00 committed by Andreas Kling
parent 45a1a7e1e6
commit d954c11f66
12 changed files with 12 additions and 2 deletions

View file

@ -11,6 +11,7 @@
#include <AK/IntrusiveList.h>
#include <AK/Noncopyable.h>
#include <AK/NonnullRefPtrVector.h>
#include <AK/OwnPtr.h>
#include <AK/String.h>
#include <AK/TypeCasts.h>
#include <AK/Weakable.h>