Core/MemoryPool: Remake memory pool

This commit is contained in:
Jérôme Leclercq
2022-02-20 16:00:32 +01:00
parent c3ace0dadc
commit 29c798a683
7 changed files with 292 additions and 183 deletions

View File

@@ -145,7 +145,7 @@ namespace Nz
std::vector<PendingOutgoingPacket> m_pendingOutgoingPackets;
MovablePtr<UInt8> m_receivedData;
Bitset<UInt64> m_dispatchQueue;
MemoryPool m_packetPool;
MemoryPool<ENetPacket> m_packetPool;
IpAddress m_address;
IpAddress m_receivedAddress;
SocketPoller m_poller;