From 666e413cd200c98565cc115a2cf520043ab1dceb Mon Sep 17 00:00:00 2001 From: Shannon Booth Date: Sat, 10 Jun 2023 19:48:21 +1200 Subject: [PATCH] LibWeb: Add missing forward of Web::Streams::PullIntoDescriptor --- 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 72d83d186f..cdedc0a775 100644 --- a/Userland/Libraries/LibWeb/Forward.h +++ b/Userland/Libraries/LibWeb/Forward.h @@ -546,6 +546,7 @@ class WritableStream; class WritableStreamDefaultController; class WritableStreamDefaultWriter; +struct PullIntoDescriptor; struct UnderlyingSink; struct UnderlyingSource; }