1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:37:34 +00:00

LibWeb: Add missing GCPtr.h includes to Fetch headers

These are missing in most Fetch headers, and clangd is (rightfully) very
loud about it on a few of these.
This commit is contained in:
Timothy Flynn 2023-02-10 08:29:14 -05:00 committed by Linus Groh
parent 332b253a47
commit 7955cb14fb
16 changed files with 16 additions and 0 deletions

View file

@ -11,6 +11,7 @@
#include <AK/NonnullRefPtr.h>
#include <AK/Optional.h>
#include <AK/Variant.h>
#include <LibJS/Heap/GCPtr.h>
#include <LibJS/Heap/Handle.h>
#include <LibWeb/FileAPI/Blob.h>
#include <LibWeb/Streams/ReadableStream.h>