diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/Array.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Array.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Array.h b/Userland/Libraries/LibJS/Runtime/Array.h index 7e1cb1f2d3..981fd26b01 100644 --- a/Userland/Libraries/LibJS/Runtime/Array.h +++ b/Userland/Libraries/LibJS/Runtime/Array.h @@ -35,7 +35,7 @@ public: } explicit Array(Object& prototype); - virtual ~Array() override; + virtual ~Array() override = default; virtual ThrowCompletionOr<Optional<PropertyDescriptor>> internal_get_own_property(PropertyKey const&) const override; virtual ThrowCompletionOr<bool> internal_define_own_property(PropertyKey const&, PropertyDescriptor const&) override; |