diff options
author | KingPin <none@none> | 2008-11-10 06:53:00 -0600 |
---|---|---|
committer | KingPin <none@none> | 2008-11-10 06:53:00 -0600 |
commit | 09280b0091474b58d43daf42c0f3d99f86e6ec25 (patch) | |
tree | a6b9b17869b7e035811baa36bc1a0e2b618af216 /src/game/WaypointManager.h | |
parent | f2250030cd7ea58eb9de63a96c34656ac1916369 (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/WaypointManager.h')
-rw-r--r-- | src/game/WaypointManager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/WaypointManager.h b/src/game/WaypointManager.h index 10d9a4a6fa0..2fdf5622c2e 100644 --- a/src/game/WaypointManager.h +++ b/src/game/WaypointManager.h @@ -23,7 +23,7 @@ #include <vector> #include <string> -#include "Utilities/HashMap.h" +#include "Utilities/UnorderedMap.h" struct WaypointBehavior { @@ -82,7 +82,7 @@ class WaypointManager void _addNode(uint32 id, uint32 point, float x, float y, float z, float o, uint32 delay, uint32 wpGuid); void _clearPath(WaypointPath &path); - typedef HM_NAMESPACE::hash_map<uint32, WaypointPath> WaypointPathMap; + typedef UNORDERED_MAP<uint32, WaypointPath> WaypointPathMap; WaypointPathMap m_pathMap; }; |