summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibIPC
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 /Userland/Libraries/LibIPC
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 'Userland/Libraries/LibIPC')
-rw-r--r--Userland/Libraries/LibIPC/Message.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibIPC/Message.h b/Userland/Libraries/LibIPC/Message.h
index 48b8cec912..7a8c5e4e56 100644
--- a/Userland/Libraries/LibIPC/Message.h
+++ b/Userland/Libraries/LibIPC/Message.h
@@ -7,6 +7,7 @@
#pragma once
#include <AK/Function.h>
+#include <AK/RefCounted.h>
#include <AK/RefPtr.h>
#include <AK/Vector.h>
#include <unistd.h>