diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Bindings/LocationObject.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Bindings/LocationObject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Bindings/LocationObject.h b/Userland/Libraries/LibWeb/Bindings/LocationObject.h index 3fab5e3698..ba2611be91 100644 --- a/Userland/Libraries/LibWeb/Bindings/LocationObject.h +++ b/Userland/Libraries/LibWeb/Bindings/LocationObject.h @@ -23,7 +23,7 @@ class LocationObject final : public JS::Object { public: explicit LocationObject(JS::GlobalObject&); virtual void initialize(JS::GlobalObject&) override; - virtual ~LocationObject() override; + virtual ~LocationObject() override = default; virtual JS::ThrowCompletionOr<JS::Object*> internal_get_prototype_of() const override; virtual JS::ThrowCompletionOr<bool> internal_set_prototype_of(Object* prototype) override; |