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

    r196 r206  
    2929#include "Database/SQLStorage.h" 
    3030 
    31 #include "Utilities/HashMap.h" 
     31#include "Utilities/UnorderedMap.h" 
    3232#include <map> 
    3333 
     
    493493}; 
    494494 
    495 typedef HM_NAMESPACE::hash_map<uint32, SpellProcEventEntry> SpellProcEventMap; 
     495typedef UNORDERED_MAP<uint32, SpellProcEventEntry> SpellProcEventMap; 
    496496 
    497497#define ELIXIR_BATTLE_MASK    0x1 
     
    532532}; 
    533533 
    534 typedef HM_NAMESPACE::hash_map<uint32, SpellTargetPosition> SpellTargetPositionMap; 
     534typedef UNORDERED_MAP<uint32, SpellTargetPosition> SpellTargetPositionMap; 
    535535 
    536536// Spell pet auras 
     
    595595}; 
    596596 
    597 typedef HM_NAMESPACE::hash_map<uint32, SpellChainNode> SpellChainMap; 
     597typedef UNORDERED_MAP<uint32, SpellChainNode> SpellChainMap; 
    598598typedef std::multimap<uint32, uint32> SpellChainMapNext; 
    599599