From 4f02bac39c9abd2d15ec1a4dc2cf1b0bf41ee400 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Thu, 14 Jul 2022 00:58:10 +0100 Subject: [PATCH] LibWeb: Add a couple of missing includes to Fetch's Headers.h --- .../Libraries/LibWeb/Fetch/Infrastructure/HTTP/Headers.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Headers.h b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Headers.h index 001b671afa..6973e04c0e 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Headers.h +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Headers.h @@ -7,7 +7,12 @@ #pragma once #include +#include #include +#include +#include +#include +#include namespace Web::Fetch {