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