aboutsummaryrefslogtreecommitdiff
path: root/src/game/World.h
diff options
context:
space:
mode:
authorKingPin <none@none>2008-11-10 06:53:00 -0600
committerKingPin <none@none>2008-11-10 06:53:00 -0600
commit09280b0091474b58d43daf42c0f3d99f86e6ec25 (patch)
treea6b9b17869b7e035811baa36bc1a0e2b618af216 /src/game/World.h
parentf2250030cd7ea58eb9de63a96c34656ac1916369 (diff)
[svn] * Switch from hashmap to unordered map. - cleanup source - mangos. Help - Aokromes
--HG-- branch : trunk rename : src/framework/Utilities/HashMap.h => src/framework/Utilities/UnorderedMap.h
Diffstat (limited to 'src/game/World.h')
-rw-r--r--src/game/World.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/World.h b/src/game/World.h
index a42aa13d69f..b42a4d61394 100644
--- a/src/game/World.h
+++ b/src/game/World.h
@@ -504,9 +504,9 @@ class World
uint32 mail_timer;
uint32 mail_timer_expires;
- typedef HM_NAMESPACE::hash_map<uint32, Weather*> WeatherMap;
+ typedef UNORDERED_MAP<uint32, Weather*> WeatherMap;
WeatherMap m_weathers;
- typedef HM_NAMESPACE::hash_map<uint32, WorldSession*> SessionMap;
+ typedef UNORDERED_MAP<uint32, WorldSession*> SessionMap;
SessionMap m_sessions;
std::set<WorldSession*> m_kicked_sessions;
uint32 m_maxActiveSessionCount;