aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Persson2008-07-22 19:09:10 +0000
committerLars Persson2008-07-22 19:09:10 +0000
commitc296869108e4d098fa50e62a8f9d817d31341568 (patch)
tree26a8e0ecb029a23c81612330c9e8aac2a8295ccd
parentabecf0a5f77b34dce555adb8f5f4b7b980a5bd6e (diff)
downloadscummvm-rg350-c296869108e4d098fa50e62a8f9d817d31341568.tar.gz
scummvm-rg350-c296869108e4d098fa50e62a8f9d817d31341568.tar.bz2
scummvm-rg350-c296869108e4d098fa50e62a8f9d817d31341568.zip
Disable hashmemory pool for Symbian OS
svn-id: r33212
-rw-r--r--common/hashmap.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/common/hashmap.h b/common/hashmap.h
index 1bae44e98e..ab6e737d74 100644
--- a/common/hashmap.h
+++ b/common/hashmap.h
@@ -58,7 +58,13 @@
#include "common/str.h"
#include "common/util.h"
+// FIXME: Since this define is very system dependant,
+// it should be moved to the appropriate H file instead.
+// Portdefs might be a good location for example
+#if !defined(__SYMBIAN32__)
#define USE_HASHMAP_MEMORY_POOL
+#endif
+
#ifdef USE_HASHMAP_MEMORY_POOL
#include "common/memorypool.h"
// FIXME: we sadly can't assume standard C++ to be present