From 9abce214355db52bfc4838c058533f5951661cf2 Mon Sep 17 00:00:00 2001 From: Shannon Booth Date: Tue, 23 Apr 2024 19:00:03 +1200 Subject: [PATCH] LibWeb: Add missing CellAllocator.h include for Buffers.h My clangd was (rightly) complaining that this include was missing. --- Userland/Libraries/LibWeb/WebIDL/Buffers.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibWeb/WebIDL/Buffers.h b/Userland/Libraries/LibWeb/WebIDL/Buffers.h index bfc07c0a0e8..c1949f5a15e 100644 --- a/Userland/Libraries/LibWeb/WebIDL/Buffers.h +++ b/Userland/Libraries/LibWeb/WebIDL/Buffers.h @@ -10,6 +10,7 @@ #include #include #include +#include namespace Web::WebIDL {