aboutsummaryrefslogtreecommitdiff
path: root/common/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/list.h')
-rw-r--r--common/list.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/common/list.h b/common/list.h
index 7de13c2f91..03d6076635 100644
--- a/common/list.h
+++ b/common/list.h
@@ -121,7 +121,12 @@ public:
insert(begin(), list.begin(), list.end());
}
- ~List<T>() {
+#ifndef __SYMBIAN32__
+ ~List<T>()
+#else
+ ~List()
+#endif
+ {
clear();
delete _anchor;
}