aboutsummaryrefslogtreecommitdiff
path: root/common/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/map.h')
-rw-r--r--common/map.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/common/map.h b/common/map.h
index ad264580a5..0dac581bd2 100644
--- a/common/map.h
+++ b/common/map.h
@@ -110,7 +110,12 @@ public:
_header->_right = _header->_left = _header;
}
- virtual ~Map<Key, Value, Comparator>() {
+#ifndef __SYMBIAN32__
+ virtual ~Map<Key, Value, Comparator>()
+#else
+ ~Map()
+#endif
+ {
clearNodes(_root);
delete _header;
_root = _header = 0;