Add allocator tag support for Dictionary and HashSet

This commit is contained in:
Wojtek Figat
2025-07-07 23:22:32 +02:00
parent 48c6339ebb
commit a8eb4fc140
4 changed files with 25 additions and 1 deletions

View File

@@ -138,7 +138,7 @@ public:
FORCE_INLINE void Swap(Data& other)
{
::Swap(_data, other._data);
::Swap(_arena, other._arena);
_arena = other._arena; // TODO: find a better way to move allocation with AllocationUtils::MoveToEmpty to preserve/maintain allocation tag ownership
}
};
};