diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Heap/Heap.h')
-rw-r--r-- | Userland/Libraries/LibJS/Heap/Heap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibJS/Heap/Heap.h b/Userland/Libraries/LibJS/Heap/Heap.h index 470f11a1af..752a2a97d8 100644 --- a/Userland/Libraries/LibJS/Heap/Heap.h +++ b/Userland/Libraries/LibJS/Heap/Heap.h @@ -84,8 +84,8 @@ private: void gather_roots(HashTable<Cell*>&); void gather_conservative_roots(HashTable<Cell*>&); - void mark_live_cells(const HashTable<Cell*>& live_cells); - void sweep_dead_cells(bool print_report, const Core::ElapsedTimer&); + void mark_live_cells(HashTable<Cell*> const& live_cells); + void sweep_dead_cells(bool print_report, Core::ElapsedTimer const&); CellAllocator& allocator_for_size(size_t); |