From 3ae22205342a0d4a204be87ad430e96b89c4ef4a Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Mon, 2 Jun 2025 17:56:11 -0400 Subject: [PATCH] LibWeb: Add missing FlyString include to CSS/URL.h clangd is complaining about this. --- Libraries/LibWeb/CSS/URL.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Libraries/LibWeb/CSS/URL.h b/Libraries/LibWeb/CSS/URL.h index 56e2828de92..e5c7e3c1da2 100644 --- a/Libraries/LibWeb/CSS/URL.h +++ b/Libraries/LibWeb/CSS/URL.h @@ -6,6 +6,7 @@ #pragma once +#include #include #include #include @@ -35,6 +36,7 @@ public: private: using Value = Variant; RequestURLModifier(Type, Value); + Type m_type; Value m_value; };