This commit is contained in:
2026-05-12 15:45:07 -05:00
parent 74d860976a
commit be28a6df79

View File

@@ -82,4 +82,8 @@ static TYC_RESULT heap_get_string(Heap* h, HEAP_KEY key, const char** value)
static size_t heap_size(Heap* h) static size_t heap_size(Heap* h)
{ {
return kh_size(h->items); return kh_size(h->items);
}
static void heap_gc(Heap* h, VALUE const* roots, size_t n_roots)
{
} }