aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;