From 51d3c8bbf747eae63aa0c0340a40042fac718e75 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 3 Mar 2022 13:56:15 +0100 Subject: [PATCH] LibWeb: Forward-declare FormattingState as a struct --- Userland/Libraries/LibWeb/Forward.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/Forward.h b/Userland/Libraries/LibWeb/Forward.h index 12ee631f43e810..ceba11476a7fc1 100644 --- a/Userland/Libraries/LibWeb/Forward.h +++ b/Userland/Libraries/LibWeb/Forward.h @@ -299,7 +299,7 @@ class ButtonBox; class CheckBox; class FlexFormattingContext; class FormattingContext; -class FormattingState; +struct FormattingState; class InitialContainingBlock; class InlineFormattingContext; class Label;