diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Bindings/LocationConstructor.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Bindings/LocationConstructor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Bindings/LocationConstructor.h b/Userland/Libraries/LibWeb/Bindings/LocationConstructor.h index 41b5345a24..65be2f7415 100644 --- a/Userland/Libraries/LibWeb/Bindings/LocationConstructor.h +++ b/Userland/Libraries/LibWeb/Bindings/LocationConstructor.h @@ -19,7 +19,7 @@ public: virtual ~LocationConstructor() override; virtual JS::ThrowCompletionOr<JS::Value> call() override; - virtual JS::ThrowCompletionOr<JS::Object*> construct(JS::FunctionObject& new_target) override; + virtual JS::ThrowCompletionOr<JS::NonnullGCPtr<JS::Object>> construct(JS::FunctionObject& new_target) override; private: virtual bool has_constructor() const override { return true; } |