From a3344cab63e7441b9a166521d6ad7889e70083e7 Mon Sep 17 00:00:00 2001 From: Matthew Olsson Date: Tue, 21 Mar 2023 10:08:15 -0700 Subject: [PATCH] LibWeb: Fix incorrect usage of JS::GCPtr --- Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Requests.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Requests.h b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Requests.h index 69ff04fc6f..7f1e4feff0 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Requests.h +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP/Requests.h @@ -157,7 +157,7 @@ public: using OriginType = Variant; using PolicyContainerType = Variant; using ReferrerType = Variant; - using ReservedClientType = Variant, JS::GCPtr>; + using ReservedClientType = Variant>; using WindowType = Variant>; [[nodiscard]] static JS::NonnullGCPtr create(JS::VM&);