diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Bindings/ImageConstructor.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Bindings/ImageConstructor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Bindings/ImageConstructor.h b/Userland/Libraries/LibWeb/Bindings/ImageConstructor.h index b516216cfd..65cb94b706 100644 --- a/Userland/Libraries/LibWeb/Bindings/ImageConstructor.h +++ b/Userland/Libraries/LibWeb/Bindings/ImageConstructor.h @@ -14,7 +14,7 @@ class ImageConstructor final : public JS::NativeFunction { public: explicit ImageConstructor(JS::GlobalObject&); virtual void initialize(JS::GlobalObject&) override; - virtual ~ImageConstructor() override; + virtual ~ImageConstructor() override = default; virtual JS::ThrowCompletionOr<JS::Value> call() override; virtual JS::ThrowCompletionOr<JS::Object*> construct(JS::FunctionObject& new_target) override; |