Show
Ignore:
Timestamp:
11/19/08 13:46:16 (17 years ago)
Author:
yumileroy
Message:

[svn] * Switch from hashmap to unordered map. - cleanup source - mangos. Help - Aokromes

Original author: KingPin?
Date: 2008-11-10 06:53:00-06:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/game/WaypointManager.h

    r102 r206  
    2424#include <vector> 
    2525#include <string> 
    26 #include "Utilities/HashMap.h" 
     26#include "Utilities/UnorderedMap.h" 
    2727 
    2828struct WaypointBehavior 
     
    8383        void _clearPath(WaypointPath &path); 
    8484 
    85         typedef HM_NAMESPACE::hash_map<uint32, WaypointPath> WaypointPathMap; 
     85        typedef UNORDERED_MAP<uint32, WaypointPath> WaypointPathMap; 
    8686        WaypointPathMap m_pathMap; 
    8787};