LibGC: Rename remaining occurrence of marked vector

In 3bfb0534be `MarkedVector` was renamed to `RootVector`, but some
related symbols were missed. This commit corrects this.
This commit is contained in:
InvalidUsernameException
2025-01-02 20:34:49 +01:00
committed by Andrew Kaster
parent 49bdda1475
commit 01f8ab35f1
3 changed files with 13 additions and 13 deletions

View File

@@ -267,7 +267,7 @@ void Heap::gather_roots(HashMap<Cell*, HeapRoot>& roots)
for (auto& root : m_roots)
roots.set(root.cell(), HeapRoot { .type = HeapRoot::Type::Root, .location = &root.source_location() });
for (auto& vector : m_marked_vectors)
for (auto& vector : m_root_vectors)
vector.gather_roots(roots);
if constexpr (HEAP_DEBUG) {