From 442cd17f7448e41c4e0595e44bca2390d03aa63e Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Thu, 17 May 2007 15:31:55 +0000 Subject: [PATCH] removed unused iterators ctors git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46092 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/string.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/wx/string.h b/include/wx/string.h index 2d6bf22581..bae578043b 100644 --- a/include/wx/string.h +++ b/include/wx/string.h @@ -679,8 +679,6 @@ public: private: iterator(wxString *str, underlying_iterator ptr) : m_cur(ptr), m_node(str, &m_cur) {} - iterator(wxString& str, underlying_iterator ptr) - : m_cur(ptr), m_node(&str, &m_cur) {} wxString* str() const { return wx_const_cast(wxString*, m_node.m_str); } @@ -717,8 +715,6 @@ public: // for internal wxString use only: const_iterator(const wxString *str, underlying_iterator ptr) : m_cur(ptr), m_node(str, &m_cur) {} - const_iterator(const wxString& str, underlying_iterator ptr) - : m_cur(ptr), m_node(&str, &m_cur) {} const wxString* str() const { return m_node.m_str; } -- 2.50.0