Core/Misc: Remove remaining COMPILER_HAS_CPP11_SUPPORT related macros

This commit is contained in:
Dehravor
2014-05-01 10:10:13 +02:00
parent 394ac748f8
commit cbd36d5a4e
54 changed files with 147 additions and 410 deletions

View File

@@ -483,7 +483,7 @@ public:
uint64 StomachEnterTarget;
//Stomach map, bool = true then in stomach
UNORDERED_MAP<uint64, bool> Stomach_Map;
std::unordered_map<uint64, bool> Stomach_Map;
void Reset() override
{
@@ -536,7 +536,7 @@ public:
if (Stomach_Map.empty())
return NULL;
UNORDERED_MAP<uint64, bool>::const_iterator i = Stomach_Map.begin();
std::unordered_map<uint64, bool>::const_iterator i = Stomach_Map.begin();
std::list<Unit*> temp;
std::list<Unit*>::const_iterator j;
@@ -680,7 +680,7 @@ public:
DoCast(me, SPELL_PURPLE_COLORATION, true);
UNORDERED_MAP<uint64, bool>::iterator i = Stomach_Map.begin();
std::unordered_map<uint64, bool>::iterator i = Stomach_Map.begin();
//Kick all players out of stomach
while (i != Stomach_Map.end())
@@ -712,7 +712,7 @@ public:
if (StomachAcidTimer <= diff)
{
//Apply aura to all players in stomach
UNORDERED_MAP<uint64, bool>::iterator i = Stomach_Map.begin();
std::unordered_map<uint64, bool>::iterator i = Stomach_Map.begin();
while (i != Stomach_Map.end())
{