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:
parent
230c90774f
commit
d364df5fee
@ -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; } \
|
||||
|
Loading…
Reference in New Issue
Block a user