diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/ObjectConstructor.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/ObjectConstructor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/ObjectConstructor.h b/Userland/Libraries/LibJS/Runtime/ObjectConstructor.h index 6489ed562a..0e26783982 100644 --- a/Userland/Libraries/LibJS/Runtime/ObjectConstructor.h +++ b/Userland/Libraries/LibJS/Runtime/ObjectConstructor.h @@ -17,7 +17,7 @@ class ObjectConstructor final : public NativeFunction { public: explicit ObjectConstructor(GlobalObject&); virtual void initialize(GlobalObject&) override; - virtual ~ObjectConstructor() override; + virtual ~ObjectConstructor() override = default; virtual ThrowCompletionOr<Value> call() override; virtual ThrowCompletionOr<Object*> construct(FunctionObject& new_target) override; |