Fixup fromcvs/togit conversion
[pkgsrcv2.git] / games / criticalmass / patches / patch-game_ModelManager.cpp
1 $NetBSD$
2
3 --- game/ModelManager.cpp.orig  2013-06-15 10:08:34.000000000 +0000
4 +++ game/ModelManager.cpp
5 @@ -26,7 +26,7 @@ ModelManager::~ModelManager()
6  {
7      XTRACE();
8  
9 -    hash_map< string, Model*, hash<string> >::const_iterator ci;
10 +    hash_map< string, Model*, HASH_NAMESPACE::hash<string> >::const_iterator ci;
11      for( ci=_modelMap.begin(); ci!=_modelMap.end(); ci++)
12      {
13          delete ci->second;
14 @@ -39,7 +39,7 @@ void ModelManager::reload( void)
15  {
16      XTRACE();
17  
18 -    hash_map< string, Model*, hash<string> >::const_iterator ci;
19 +    hash_map< string, Model*, HASH_NAMESPACE::hash<string> >::const_iterator ci;
20      for( ci=_modelMap.begin(); ci!=_modelMap.end(); ci++)
21      {
22          ci->second->reload();