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/LibIPC | |
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/LibIPC')
-rw-r--r-- | Userland/Libraries/LibIPC/Message.h | 1 |
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> |