LibGC: Include CellAllocator.h in HeapVector.h

Next commit adds a user of this which doesn't already have the
GC_DECLARE_ALLOCATOR() macro available.
This commit is contained in:
Sam Atkins 2026-02-12 14:42:45 +00:00 committed by Tim Flynn
parent ed86e1d978
commit 8ffac507c6

View file

@ -4,10 +4,11 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibGC/Cell.h>
#pragma once
#include <LibGC/Cell.h>
#include <LibGC/CellAllocator.h>
namespace GC {
template<typename T>