diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/WeakSet.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/WeakSet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/WeakSet.h b/Userland/Libraries/LibJS/Runtime/WeakSet.h index 80bcba5708..36433f86c5 100644 --- a/Userland/Libraries/LibJS/Runtime/WeakSet.h +++ b/Userland/Libraries/LibJS/Runtime/WeakSet.h @@ -27,7 +27,7 @@ public: HashTable<Cell*> const& values() const { return m_values; }; HashTable<Cell*>& values() { return m_values; }; - virtual void remove_swept_cells(Badge<Heap>, Vector<Cell*>&) override; + virtual void remove_swept_cells(Badge<Heap>, Span<Cell*>) override; private: HashTable<Cell*> m_values; // This stores Cell pointers instead of Object pointers to aide with sweeping |