refactor: unglob std::unordered_set

This commit is contained in:
Tropical
2026-03-06 12:13:01 -06:00
parent 49d02788c0
commit 0855e6ddf4
21 changed files with 34 additions and 34 deletions

View File

@@ -165,9 +165,9 @@ Packet::Packet() : createTime( System::currentTimeMillis() )
std::unordered_map<int, packetCreateFn> Packet::idToCreateMap;
unordered_set<int> Packet::clientReceivedPackets = unordered_set<int>();
unordered_set<int> Packet::serverReceivedPackets = unordered_set<int>();
unordered_set<int> Packet::sendToAnyClientPackets = unordered_set<int>();
std::unordered_set<int> Packet::clientReceivedPackets = std::unordered_set<int>();
std::unordered_set<int> Packet::serverReceivedPackets = std::unordered_set<int>();
std::unordered_set<int> Packet::sendToAnyClientPackets = std::unordered_set<int>();
// 4J Added
std::unordered_map<int, Packet::PacketStatistics *> Packet::outgoingStatistics = std::unordered_map<int, Packet::PacketStatistics *>();