diff options
author | Gunnar Beutner <gbeutner@serenityos.org> | 2021-05-15 22:08:44 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-16 17:49:42 +0200 |
commit | fbdc3b0ee22493cd35c205a4f974c755928b905b (patch) | |
tree | 637cbd826c64b8e0cedc98703347077422922286 | |
parent | 47ec5cf3400768c66ec4ef2fcc1350e898450e53 (diff) | |
download | serenity-fbdc3b0ee22493cd35c205a4f974c755928b905b.zip |
Userland: Add missing #includes
These two header files relied on transitive header includes.
-rw-r--r-- | Userland/Libraries/LibCompress/DeflateTables.h | 2 | ||||
-rw-r--r-- | Userland/Libraries/LibDebug/Dwarf/Expression.cpp | 1 |
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> |