LibGC: Enable EXPLICIT_SYMBOL_EXPORT

This commit is contained in:
ayeteadoe 2025-06-28 01:34:31 -07:00 committed by Andrew Kaster
commit 83846b3861
Notes: github-actions[bot] 2025-06-30 16:51:58 +00:00
18 changed files with 22 additions and 24 deletions

View file

@ -21,7 +21,7 @@
namespace GC {
class CellAllocator {
class GC_API CellAllocator {
public:
CellAllocator(size_t cell_size, char const* class_name = nullptr);
~CellAllocator() = default;
@ -68,7 +68,7 @@ private:
};
template<typename T>
class TypeIsolatingCellAllocator {
class GC_API TypeIsolatingCellAllocator {
public:
using CellType = T;