summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-05-15 22:08:44 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-16 17:49:42 +0200
commitfbdc3b0ee22493cd35c205a4f974c755928b905b (patch)
tree637cbd826c64b8e0cedc98703347077422922286
parent47ec5cf3400768c66ec4ef2fcc1350e898450e53 (diff)
downloadserenity-fbdc3b0ee22493cd35c205a4f974c755928b905b.zip
Userland: Add missing #includes
These two header files relied on transitive header includes.
-rw-r--r--Userland/Libraries/LibCompress/DeflateTables.h2
-rw-r--r--Userland/Libraries/LibDebug/Dwarf/Expression.cpp1
2 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibCompress/DeflateTables.h b/Userland/Libraries/LibCompress/DeflateTables.h
index 54e9523ff0..551acbe2d6 100644
--- a/Userland/Libraries/LibCompress/DeflateTables.h
+++ b/Userland/Libraries/LibCompress/DeflateTables.h
@@ -6,6 +6,8 @@
#pragma once
+#include <AK/Array.h>
+
namespace Compress {
// RFC 1951 - 3.2.5
diff --git a/Userland/Libraries/LibDebug/Dwarf/Expression.cpp b/Userland/Libraries/LibDebug/Dwarf/Expression.cpp
index 0c93f01a09..0924219770 100644
--- a/Userland/Libraries/LibDebug/Dwarf/Expression.cpp
+++ b/Userland/Libraries/LibDebug/Dwarf/Expression.cpp
@@ -6,6 +6,7 @@
#include "Expression.h"
+#include <AK/Format.h>
#include <AK/MemoryStream.h>
#include <sys/arch/i386/regs.h>