From a3a69b8ad24803932856bf0b0c0ff1998a978109 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Sat, 17 Aug 2024 14:26:55 -0400 Subject: [PATCH] LibWeb: Add a forward declaration of FileAPI::FileList --- Userland/Libraries/LibWeb/Forward.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibWeb/Forward.h b/Userland/Libraries/LibWeb/Forward.h index a0d287c239d..bc83276e464 100644 --- a/Userland/Libraries/LibWeb/Forward.h +++ b/Userland/Libraries/LibWeb/Forward.h @@ -325,6 +325,7 @@ struct Header; namespace Web::FileAPI { class Blob; class File; +class FileList; } namespace Web::Geometry {