summaryrefslogtreecommitdiff
path: root/games/criticalmass/patches/patch-game_ModelManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'games/criticalmass/patches/patch-game_ModelManager.cpp')
-rw-r--r--games/criticalmass/patches/patch-game_ModelManager.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/games/criticalmass/patches/patch-game_ModelManager.cpp b/games/criticalmass/patches/patch-game_ModelManager.cpp
new file mode 100644
index 00000000000..2122c798e9a
--- /dev/null
+++ b/games/criticalmass/patches/patch-game_ModelManager.cpp
@@ -0,0 +1,22 @@
+$NetBSD: patch-game_ModelManager.cpp,v 1.1 2013/06/16 20:40:40 joerg Exp $
+
+--- game/ModelManager.cpp.orig 2013-06-15 10:08:34.000000000 +0000
++++ game/ModelManager.cpp
+@@ -26,7 +26,7 @@ ModelManager::~ModelManager()
+ {
+ XTRACE();
+
+- hash_map< string, Model*, hash<string> >::const_iterator ci;
++ hash_map< string, Model*, HASH_NAMESPACE::hash<string> >::const_iterator ci;
+ for( ci=_modelMap.begin(); ci!=_modelMap.end(); ci++)
+ {
+ delete ci->second;
+@@ -39,7 +39,7 @@ void ModelManager::reload( void)
+ {
+ XTRACE();
+
+- hash_map< string, Model*, hash<string> >::const_iterator ci;
++ hash_map< string, Model*, HASH_NAMESPACE::hash<string> >::const_iterator ci;
+ for( ci=_modelMap.begin(); ci!=_modelMap.end(); ci++)
+ {
+ ci->second->reload();