X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/968f291be6686f70b259d9449089be204e51080e..d95c5149add596d0dec940599332a24edf96dc38:/include/wx/string.h 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; } \