aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorChris Apers2007-01-14 11:06:34 +0000
committerChris Apers2007-01-14 11:06:34 +0000
commitefe466040a301e59e788dfb0560ee29cff8a4216 (patch)
tree10a13e8b734583135bf57250f6d3c8736012c85d /common
parentb500f02e617f2f7758783ea671a5d9a83c149db4 (diff)
downloadscummvm-rg350-efe466040a301e59e788dfb0560ee29cff8a4216.tar.gz
scummvm-rg350-efe466040a301e59e788dfb0560ee29cff8a4216.tar.bz2
scummvm-rg350-efe466040a301e59e788dfb0560ee29cff8a4216.zip
Still doesn't work with PalmOS compiler
svn-id: r25079
Diffstat (limited to 'common')
-rw-r--r--common/hashmap.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/hashmap.h b/common/hashmap.h
index 606230d9f4..7898833382 100644
--- a/common/hashmap.h
+++ b/common/hashmap.h
@@ -85,6 +85,10 @@ template <class Key, class Val, class HashFunc = Hash<Key>, class EqualFunc = Eq
class HashMap {
friend class const_iterator;
private:
+#if defined (PALMOS_MODE)
+public:
+#endif
+
struct Node {
Key _key;
Val _value;