summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/ArrayIterator.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/ArrayIterator.h')
-rw-r--r--Userland/Libraries/LibJS/Runtime/ArrayIterator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/ArrayIterator.h b/Userland/Libraries/LibJS/Runtime/ArrayIterator.h
index 28089a3be8..47e115f4c1 100644
--- a/Userland/Libraries/LibJS/Runtime/ArrayIterator.h
+++ b/Userland/Libraries/LibJS/Runtime/ArrayIterator.h
@@ -17,7 +17,7 @@ public:
static ArrayIterator* create(GlobalObject&, Value array, Object::PropertyKind iteration_kind);
explicit ArrayIterator(Value array, Object::PropertyKind iteration_kind, Object& prototype);
- virtual ~ArrayIterator() override;
+ virtual ~ArrayIterator() override = default;
Value array() const { return m_array; }
Object::PropertyKind iteration_kind() const { return m_iteration_kind; }