From: Vadim Zeitlin Date: Sat, 15 Apr 2006 18:39:56 +0000 (+0000) Subject: removed unneeded reverse_iterator::operator->() which provokes VC6 warnings X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d364df5fee0993215bd1bb2549247729a8e9e882 removed unneeded reverse_iterator::operator->() which provokes VC6 warnings git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38747 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/string.h b/include/wx/string.h index ad2ec51b9d..37ad4b835b 100644 --- a/include/wx/string.h +++ b/include/wx/string.h @@ -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; } \