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
This commit is contained in:
Vadim Zeitlin 2006-04-15 18:39:56 +00:00
parent 230c90774f
commit d364df5fee

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