]> git.saurik.com Git - wxWidgets.git/commitdiff
removed unneeded reverse_iterator::operator->() which provokes VC6 warnings
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 15 Apr 2006 18:39:56 +0000 (18:39 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 15 Apr 2006 18:39:56 +0000 (18:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38747 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

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; }         \