aboutsummaryrefslogtreecommitdiff
path: root/common/array.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/array.h')
-rw-r--r--common/array.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/common/array.h b/common/array.h
index 8116e94c9a..63b7fca533 100644
--- a/common/array.h
+++ b/common/array.h
@@ -47,7 +47,12 @@ public:
_data[i] = array._data[i];
}
- ~Array<T>() {
+#ifdef __SYMBIAN32__
+ ~Array()
+#else
+ ~Array<T>()
+#endif
+ {
if (_data)
delete [] _data;
}