mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-19 08:11:58 +00:00
28 lines
545 B
C++
28 lines
545 B
C++
/*
|
|
* Copyright (c) 2026, Luke Wilde <luke@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibGC/ConservativeHashMap.h>
|
|
#include <LibGC/Heap.h>
|
|
|
|
namespace GC {
|
|
|
|
ConservativeHashMapBase::ConservativeHashMapBase()
|
|
: ConservativeHashMapBase(Heap::the())
|
|
{
|
|
}
|
|
|
|
ConservativeHashMapBase::ConservativeHashMapBase(Heap& heap)
|
|
: m_heap(&heap)
|
|
{
|
|
m_heap->did_create_conservative_hash_map({}, *this);
|
|
}
|
|
|
|
ConservativeHashMapBase::~ConservativeHashMapBase()
|
|
{
|
|
m_heap->did_destroy_conservative_hash_map({}, *this);
|
|
}
|
|
|
|
}
|