summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibIPC
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2022-09-13 17:42:39 +0200
committerTim Flynn <trflynn89@pm.me>2022-09-18 13:27:24 -0400
commita99cd09891a4f052e15a405dfefe4ef437e74b0a (patch)
tree48a7669b5b383f8d49ce5fdd095b7e4a9e326bab /Userland/Libraries/LibIPC
parent48d8aff4367615d8ea90cc78abfa6f1dd6080726 (diff)
downloadserenity-a99cd09891a4f052e15a405dfefe4ef437e74b0a.zip
Libraries: Add missing includes, add namespace qualifiers
This remained undetected for a long time as HeaderCheck is disabled by default. This commit makes the following file compile again: // file: compile_me.cpp #include <LibDNS/Question.h> // That's it, this was enough to cause a compilation error. Likewise for most other files touched by this commit.
Diffstat (limited to 'Userland/Libraries/LibIPC')
-rw-r--r--Userland/Libraries/LibIPC/Encoder.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibIPC/Encoder.h b/Userland/Libraries/LibIPC/Encoder.h
index 4c39ebd64b..c5bbc72bea 100644
--- a/Userland/Libraries/LibIPC/Encoder.h
+++ b/Userland/Libraries/LibIPC/Encoder.h
@@ -7,6 +7,7 @@
#pragma once
#include <AK/Concepts.h>
+#include <AK/HashMap.h>
#include <AK/StdLibExtras.h>
#include <LibCore/SharedCircularQueue.h>
#include <LibIPC/Forward.h>