]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/string.h
Add virtual keyword where applicable.
[wxWidgets.git] / include / wx / string.h
index ad2ec51b9d01a58e6fe00d712de10f5f63fa93fe..37ad4b835b17ba440fb8e70c40a9b09ca29aca52 100644 (file)
@@ -314,7 +314,6 @@ public:
       iterator_type base() const { return m_cur; }                            \
                                                                               \
       reference operator*() const { return *(m_cur - 1); }                    \
-      pointer operator->() const { return m_cur - 1; }                        \
                                                                               \
       name& operator++() { --m_cur; return *this; }                           \
       name operator++(int) { name tmp = *this; --m_cur; return tmp; }         \