From fbdc3b0ee22493cd35c205a4f974c755928b905b Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Sat, 15 May 2021 22:08:44 +0200 Subject: [PATCH] Userland: Add missing #includes These two header files relied on transitive header includes. --- Userland/Libraries/LibCompress/DeflateTables.h | 2 ++ Userland/Libraries/LibDebug/Dwarf/Expression.cpp | 1 + 2 files changed, 3 insertions(+) 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 + 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 #include #include