From dee26ca5cdfe62c28c6ec5c516187f335b58471e Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Sun, 10 Oct 2021 15:56:29 +0200 Subject: [PATCH] LibWeb: Add missing headers --- Userland/Libraries/LibWeb/CSS/Display.h | 2 ++ Userland/Libraries/LibWeb/Layout/FlexFormattingContext.h | 1 + Userland/Libraries/LibWeb/Layout/FormattingContext.h | 1 + Userland/Libraries/LibWeb/Layout/TreeBuilder.h | 1 + 4 files changed, 5 insertions(+) diff --git a/Userland/Libraries/LibWeb/CSS/Display.h b/Userland/Libraries/LibWeb/CSS/Display.h index dd1f1782a7..634f92d778 100644 --- a/Userland/Libraries/LibWeb/CSS/Display.h +++ b/Userland/Libraries/LibWeb/CSS/Display.h @@ -6,6 +6,8 @@ #pragma once +#include + namespace Web::CSS { class Display { diff --git a/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.h b/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.h index 73dffa9310..0a684de2af 100644 --- a/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.h +++ b/Userland/Libraries/LibWeb/Layout/FlexFormattingContext.h @@ -6,6 +6,7 @@ #pragma once +#include #include namespace Web::Layout { diff --git a/Userland/Libraries/LibWeb/Layout/FormattingContext.h b/Userland/Libraries/LibWeb/Layout/FormattingContext.h index de0208a74e..d88163b4bd 100644 --- a/Userland/Libraries/LibWeb/Layout/FormattingContext.h +++ b/Userland/Libraries/LibWeb/Layout/FormattingContext.h @@ -6,6 +6,7 @@ #pragma once +#include #include namespace Web::Layout { diff --git a/Userland/Libraries/LibWeb/Layout/TreeBuilder.h b/Userland/Libraries/LibWeb/Layout/TreeBuilder.h index ae000a4765..7089e4b379 100644 --- a/Userland/Libraries/LibWeb/Layout/TreeBuilder.h +++ b/Userland/Libraries/LibWeb/Layout/TreeBuilder.h @@ -8,6 +8,7 @@ #include #include +#include #include namespace Web::Layout {