From 8d17786b8cae8f869820a68f7ea8e1e58670bf62 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Fri, 25 Jul 2025 10:05:24 -0400 Subject: [PATCH] LibWeb: Add missing include to LineBoxFragment.h This missing include is making clangd behave badly on this file. --- Libraries/LibWeb/Layout/LineBoxFragment.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Libraries/LibWeb/Layout/LineBoxFragment.h b/Libraries/LibWeb/Layout/LineBoxFragment.h index 888a3b094c0..d8dd4c5cfd8 100644 --- a/Libraries/LibWeb/Layout/LineBoxFragment.h +++ b/Libraries/LibWeb/Layout/LineBoxFragment.h @@ -9,6 +9,7 @@ #include #include #include +#include #include #include