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

@@ -34,8 +34,8 @@ namespace WeatherMgr
namespace
{
typedef UNORDERED_MAP<uint32, Trinity::AutoPtr<Weather, ACE_Null_Mutex> > WeatherMap;
typedef UNORDERED_MAP<uint32, WeatherData> WeatherZoneMap;
typedef std::unordered_map<uint32, Trinity::AutoPtr<Weather, ACE_Null_Mutex> > WeatherMap;
typedef std::unordered_map<uint32, WeatherData> WeatherZoneMap;
WeatherMap m_weathers;
WeatherZoneMap mWeatherZoneMap;