aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2006-07-22 17:00:36 +0000
committerMax Horn2006-07-22 17:00:36 +0000
commitc59e7ece0a825a75ab639edff3081465ef6b94fc (patch)
tree0adeb845ae25ffec90e926d6cf7ec9f47fc713a7 /common
parentd272f6c4835457ac785ebd5495ccbb4abace02bf (diff)
downloadscummvm-rg350-c59e7ece0a825a75ab639edff3081465ef6b94fc.tar.gz
scummvm-rg350-c59e7ece0a825a75ab639edff3081465ef6b94fc.tar.bz2
scummvm-rg350-c59e7ece0a825a75ab639edff3081465ef6b94fc.zip
Part of the FreeMiNT patch
svn-id: r23566
Diffstat (limited to 'common')
-rw-r--r--common/hashmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/hashmap.h b/common/hashmap.h
index dcbbe17f3a..cd1087abb6 100644
--- a/common/hashmap.h
+++ b/common/hashmap.h
@@ -121,7 +121,7 @@ uint nextTableSize(uint x);
template <class Key, class Val, class HashFunc = Hash<Key>, class EqualFunc = EqualTo<Key>, class BaseNodeFunc = BaseNode<Key, Val> >
class HashMap {
private:
-#if defined (_WIN32_WCE) || defined (_MSC_VER) || defined (__SYMBIAN32__) || defined (PALMOS_MODE)
+#if defined (_WIN32_WCE) || defined (_MSC_VER) || defined (__SYMBIAN32__) || defined (PALMOS_MODE) || defined (__MINT__)
//FIXME evc4, msvc6,msvc7 & GCC 2.9x doesn't like it as private member
public:
#endif