mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-07 08:39:22 +00:00
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:
parent
49bdda1475
commit
01f8ab35f1
Notes:
github-actions[bot]
2025-01-02 23:23:26 +00:00
Author: https://github.com/InvalidUsernameException
Commit: 01f8ab35f1
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3107
Reviewed-by: https://github.com/ADKaster ✅
3 changed files with 13 additions and 13 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue