Core/Misc: Remove remaining COMPILER_HAS_CPP11_SUPPORT related macros

This commit is contained in:
Dehravor
2014-05-01 11:19:32 +02:00
parent 394ac748f8
commit cbd36d5a4e
54 changed files with 147 additions and 410 deletions
+1 -1
View File
@@ -17699,7 +17699,7 @@ void Unit::BuildCooldownPacket(WorldPacket& data, uint8 flags, PacketCooldowns c
data.Initialize(SMSG_SPELL_COOLDOWN, 8 + 1 + (4 + 4) * cooldowns.size());
data << uint64(GetGUID());
data << uint8(flags);
for (UNORDERED_MAP<uint32, uint32>::const_iterator itr = cooldowns.begin(); itr != cooldowns.end(); ++itr)
for (std::unordered_map<uint32, uint32>::const_iterator itr = cooldowns.begin(); itr != cooldowns.end(); ++itr)
{
data << uint32(itr->first);
data << uint32(itr->second);