diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2014-05-03 19:25:36 +0200 |
---|---|---|
committer | Aokromes <Aokromes@users.noreply.github.com> | 2014-05-03 19:25:36 +0200 |
commit | d7b1405725d2f247776f3586df8c3512416f60cd (patch) | |
tree | 3aced294b76f2e78b2d71b2d920297337b1249da /src/server/game/Weather/WeatherMgr.cpp | |
parent | b7a105bcc86b4791e0deeaff7d8ba697821172ae (diff) | |
parent | cbd36d5a4e97d41e56b7339a619ee1072fc9cc17 (diff) |
Merge pull request #11968 from Dehravor/cpp11
Core/Misc: Remove remaining COMPILER_HAS_CPP11_SUPPORT related macros
Diffstat (limited to 'src/server/game/Weather/WeatherMgr.cpp')
-rw-r--r-- | src/server/game/Weather/WeatherMgr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Weather/WeatherMgr.cpp b/src/server/game/Weather/WeatherMgr.cpp index 886a910becc..59dc591ccd0 100644 --- a/src/server/game/Weather/WeatherMgr.cpp +++ b/src/server/game/Weather/WeatherMgr.cpp @@ -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; |