summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibPDF/XRefTable.h
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/LibPDF/XRefTable.h
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/LibPDF/XRefTable.h')
-rw-r--r--Userland/Libraries/LibPDF/XRefTable.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibPDF/XRefTable.h b/Userland/Libraries/LibPDF/XRefTable.h
index 8c5abe14c9..3aeb75d449 100644
--- a/Userland/Libraries/LibPDF/XRefTable.h
+++ b/Userland/Libraries/LibPDF/XRefTable.h
@@ -10,6 +10,7 @@
#include <AK/RefCounted.h>
#include <AK/String.h>
#include <AK/Vector.h>
+#include <LibPDF/Error.h>
namespace PDF {