summaryrefslogtreecommitdiff
path: root/Tests/AK
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-05-19 14:35:34 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-19 21:36:57 +0200
commitd954c11f6689ae8b1119a76644b546547ee314b7 (patch)
tree98642a9f4982f9280ee0de59111f31a7d43f76d2 /Tests/AK
parent45a1a7e1e6cb3e88d6f70b161f8b8ada1bded246 (diff)
downloadserenity-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 'Tests/AK')
-rw-r--r--Tests/AK/TestHashMap.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/AK/TestHashMap.cpp b/Tests/AK/TestHashMap.cpp
index a057319309..86fc4e98d9 100644
--- a/Tests/AK/TestHashMap.cpp
+++ b/Tests/AK/TestHashMap.cpp
@@ -7,6 +7,7 @@
#include <LibTest/TestCase.h>
#include <AK/HashMap.h>
+#include <AK/OwnPtr.h>
#include <AK/String.h>
TEST_CASE(construct)