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/InstanceSaveMgr.h

    r102 r206  
    2828#include <list> 
    2929#include <map> 
    30 #include "Utilities/HashMap.h" 
     30#include "Utilities/UnorderedMap.h" 
    3131#include "Database/DatabaseEnv.h" 
    3232 
     
    122122 
    123123        typedef std::map<uint32 /*InstanceId*/, InstanceSave*> InstanceSaveMap; 
    124         typedef HM_NAMESPACE::hash_map<uint32 /*InstanceId*/, InstanceSave*> InstanceSaveHashMap; 
     124        typedef UNORDERED_MAP<uint32 /*InstanceId*/, InstanceSave*> InstanceSaveHashMap; 
    125125        typedef std::map<uint32 /*mapId*/, InstanceSaveMap> InstanceSaveMapMap; 
    126126